addDumpTest is a helper method to append the passed input and desired result to dumpTests
(in interface{}, wants ...string)
| 82 | // addDumpTest is a helper method to append the passed input and desired result |
| 83 | // to dumpTests |
| 84 | func addDumpTest(in interface{}, wants ...string) { |
| 85 | test := dumpTest{in, wants} |
| 86 | dumpTests = append(dumpTests, test) |
| 87 | } |
| 88 | |
| 89 | func addIntDumpTests() { |
| 90 | // Max int8. |
no outgoing calls
no test coverage detected
searching dependent graphs…