| 8 | import "testing" |
| 9 | |
| 10 | type cases struct { |
| 11 | name string |
| 12 | description string |
| 13 | base int64 |
| 14 | exponent int64 |
| 15 | mod int64 |
| 16 | expected int64 |
| 17 | expectedError error |
| 18 | } |
| 19 | |
| 20 | var testCases = []cases{ |
| 21 | { |
nothing calls this directly
no outgoing calls
no test coverage detected