2024-11-17 20:51:12 +00:00
|
|
|
//go:build windows
|
|
|
|
|
2023-11-04 19:51:35 +00:00
|
|
|
package ad_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2024-10-03 18:23:56 +00:00
|
|
|
"github.com/prometheus-community/windows_exporter/internal/collector/ad"
|
2024-11-17 20:51:12 +00:00
|
|
|
"github.com/prometheus-community/windows_exporter/internal/utils/testutils"
|
2023-11-04 19:51:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func BenchmarkCollector(b *testing.B) {
|
|
|
|
testutils.FuncBenchmarkCollector(b, ad.Name, ad.NewWithFlags)
|
|
|
|
}
|