(b *testing.B)
| 41 | } |
| 42 | |
| 43 | func BenchmarkGCDRecursive(b *testing.B) { |
| 44 | TemplateBenchmarkGCD(b, Recursive) |
| 45 | } |
| 46 | |
| 47 | func BenchmarkGCDIterative(b *testing.B) { |
| 48 | TemplateBenchmarkGCD(b, Iterative) |
nothing calls this directly
no test coverage detected