(b *testing.B)
| 15 | } |
| 16 | |
| 17 | func BenchmarkJump(b *testing.B) { |
| 18 | testCase := generateBenchmarkTestCase() |
| 19 | b.ResetTimer() // exclude time taken to generate test case |
| 20 | for i := 0; i < b.N; i++ { |
| 21 | _, _ = Jump(testCase, i) |
| 22 | } |
| 23 | } |
nothing calls this directly
no test coverage detected