Files
go-zero/core/stat/internal/cpu_linux_test.go
2020-10-07 18:07:54 +08:00

18 lines
243 B
Go

package internal
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestRefreshCpu(t *testing.T) {
assert.True(t, RefreshCpu() >= 0)
}
func BenchmarkRefreshCpu(b *testing.B) {
for i := 0; i < b.N; i++ {
RefreshCpu()
}
}