(b *testing.B)
| 135 | } |
| 136 | |
| 137 | func BenchmarkToken(b *testing.B) { |
| 138 | for i := 0; i < b.N; i++ { |
| 139 | _, err := testProvider.Token(bmRequest) |
| 140 | if err != nil { |
| 141 | b.Fatalf("%v", err) |
| 142 | } |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | func BenchmarkVerify(b *testing.B) { |
| 147 | token, _ := testProvider.Token(bmRequest) |
nothing calls this directly
no test coverage detected
searching dependent graphs…