36 lines
520 B
Go
36 lines
520 B
Go
package main
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestCpu_times(t *testing.T) {
|
|
cpu := NewCPU()
|
|
|
|
v, err := cpu.Cpu_times()
|
|
if err != nil {
|
|
t.Errorf("error %v", err)
|
|
}
|
|
if len(v) == 0 {
|
|
t.Errorf("could not get CPUs ", err)
|
|
}
|
|
|
|
for _, vv := range v {
|
|
if vv.User == 0 {
|
|
t.Errorf("could not get CPU User: %v", vv)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestCpu_counts(t *testing.T) {
|
|
cpu := NewCPU()
|
|
|
|
v, err := cpu.Cpu_counts()
|
|
if err != nil {
|
|
t.Errorf("error %v", err)
|
|
}
|
|
if v == 0 {
|
|
t.Errorf("could not get CPU counts: %v", v)
|
|
}
|
|
}
|