cpu_linux_test.go 125 B

123456789
  1. package internal
  2. import "testing"
  3. func BenchmarkRefreshCpu(b *testing.B) {
  4. for i := 0; i < b.N; i++ {
  5. RefreshCpu()
  6. }
  7. }