mirror of
https://github.com/prometheus-community/windows_exporter.git
synced 2026-02-08 05:56:37 +00:00
15 lines
293 B
Go
15 lines
293 B
Go
//go:build windows
|
|
|
|
package net_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prometheus-community/windows_exporter/internal/collector/net"
|
|
"github.com/prometheus-community/windows_exporter/internal/utils/testutils"
|
|
)
|
|
|
|
func TestCollector(t *testing.T) {
|
|
testutils.TestCollector(t, net.New, nil)
|
|
}
|