You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rition/rition-probe/probe/network_test.go

14 lines
204 B

package probe
import (
"fmt"
"testing"
)
func TestProbe_GetNetworkCounter(t *testing.T) {
counters := probeTest.GetNetworkCounterAll()
for _, counter := range counters {
fmt.Println(counter)
}
}