(b *testing.B)
| 148 | } |
| 149 | |
| 150 | func Benchmark_parseKeyspace(b *testing.B) { |
| 151 | b.ReportAllocs() |
| 152 | for i := 0; i < b.N; i++ { |
| 153 | _, _, _, _ = ParseKeyspace("d.s.c") |
| 154 | } |
| 155 | } |
| 156 | |
| 157 | func TestShouldCheckAdminRBAC(t *testing.T) { |
| 158 | for _, requireInterfaceAuth := range []bool{false, true} { |
nothing calls this directly
no test coverage detected