mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-15 09:26:36 +00:00
21 lines
407 B
Go
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)
|
|
}
|