(t *testing.T)
| 894 | } |
| 895 | |
| 896 | func TestMultiply(t *testing.T) { |
| 897 | ClearMem() |
| 898 | testMultiply(0, 0, t) |
| 899 | testMultiply(1, 1, t) |
| 900 | testMultiply(1, 2, t) |
| 901 | testMultiply(2, 1, t) |
| 902 | testMultiply(5, 5, t) |
| 903 | testMultiply(8, 12, t) |
| 904 | testMultiply(19, 13, t) |
| 905 | } |
| 906 | |
| 907 | func testMultiply(inputA, inputB uint16, t *testing.T) { |
| 908 | c := SetUpCPU() |
nothing calls this directly
no test coverage detected