1 //go:build windows 2 3 package jobcontainers 4 5 import ( 6 "testing" 7 ) 8 9 func TestSystemInfo(t *testing.T) { 10 _, err := systemProcessInformation() 11 if err != nil { 12 t.Fatal(err) 13 } 14 } 15
View as plain text