15 lines
325 B
Go
15 lines
325 B
Go
//go:build windows
|
|
|
|
package smtp_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prometheus-community/windows_exporter/internal/collector/smtp"
|
|
"github.com/prometheus-community/windows_exporter/internal/utils/testutils"
|
|
)
|
|
|
|
func BenchmarkCollector(b *testing.B) {
|
|
testutils.FuncBenchmarkCollector(b, smtp.Name, smtp.NewWithFlags)
|
|
}
|