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"
|
|
|
|
"github.com/prometheus-community/windows_exporter/internal/testutils"
|
2023-11-04 19:51:35 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func BenchmarkCollector(b *testing.B) {
|
|
|
|
testutils.FuncBenchmarkCollector(b, ad.Name, ad.NewWithFlags)
|
|
|
|
}
|