10 lines
137 B
Go
10 lines
137 B
Go
|
package collector
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func BenchmarkSmtpCollector(b *testing.B) {
|
||
|
benchmarkCollector(b, "smtp", NewSMTPCollector)
|
||
|
}
|