Files
windows_exporter/internal/collector/os/os_test.go
2024-10-07 00:15:54 +02:00

19 lines
381 B
Go

package os_test
import (
"testing"
"github.com/prometheus-community/windows_exporter/internal/collector/os"
"github.com/prometheus-community/windows_exporter/internal/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)
}