(b *testing.B, f testExtendedFunction)
| 42 | } |
| 43 | |
| 44 | func TemplateBenchmarkExtendedGCD(b *testing.B, f testExtendedFunction) { |
| 45 | for i := 0; i < b.N; i++ { |
| 46 | f(98, 56) |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | func BenchmarkExtendedGCDRecursive(b *testing.B) { |
| 51 | TemplateBenchmarkExtendedGCD(b, ExtendedRecursive) |
no outgoing calls
no test coverage detected