(b *testing.B)
| 133 | } |
| 134 | |
| 135 | func BenchmarkGetStatFileContentUint64(b *testing.B) { |
| 136 | b.ReportAllocs() |
| 137 | |
| 138 | for i := 0; i < b.N; i++ { |
| 139 | _ = getStatFileContentUint64("/proc/self/loginuid") |
| 140 | } |
| 141 | } |
| 142 | |
| 143 | func TestGetKVStatsFileContentUint64(t *testing.T) { |
| 144 | testCases := []struct { |
nothing calls this directly
no test coverage detected
searching dependent graphs…