mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-01-10 00:09:33 +00:00
e6a15d4ec4
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
15 lines
345 B
Go
15 lines
345 B
Go
//go:build windows
|
|
|
|
package container_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prometheus-community/windows_exporter/internal/collector/container"
|
|
"github.com/prometheus-community/windows_exporter/internal/utils/testutils"
|
|
)
|
|
|
|
func BenchmarkCollector(b *testing.B) {
|
|
testutils.FuncBenchmarkCollector(b, container.Name, container.NewWithFlags)
|
|
}
|