(self)
| 189 | |
| 190 | class TestFlipud: |
| 191 | def test_basic(self): |
| 192 | a = get_mat(4) |
| 193 | b = a[::-1, :] |
| 194 | assert_equal(flipud(a), b) |
| 195 | a = [[0, 1, 2], |
| 196 | [3, 4, 5]] |
| 197 | b = [[3, 4, 5], |
| 198 | [0, 1, 2]] |
| 199 | assert_equal(flipud(a), b) |
| 200 | |
| 201 | |
| 202 | class TestHistogram2d: |
nothing calls this directly
no test coverage detected