Files
windows_exporter/internal/collector/os/os_test.go
Jan-Otto Kröpke e6a15d4ec4 chore: Remove registry based perfdata collector (#1742)
Signed-off-by: Jan-Otto Kröpke <mail@jkroepke.de>
2024-11-17 21:51:12 +01:00

21 lines
407 B
Go

//go:build windows
package os_test
import (
"testing"
"github.com/prometheus-community/windows_exporter/internal/collector/os"
"github.com/prometheus-community/windows_exporter/internal/utils/testutils"
)
func BenchmarkCollector(b *testing.B) {
testutils.FuncBenchmarkCollector(b, os.Name, os.NewWithFlags)
}
func TestCollector(t *testing.T) {
t.Skip()
testutils.TestCollector(t, os.New, nil)
}