mirror of
https://github.com/prometheus-community/windows_exporter
synced 2025-01-28 18:23:16 +00:00
15 lines
287 B
Go
15 lines
287 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/testutils"
|
|
)
|
|
|
|
func TestCollector(t *testing.T) {
|
|
testutils.TestCollector(t, net.New, nil)
|
|
}
|