(self)
| 171 | |
| 172 | class TestFlipud: |
| 173 | def test_basic(self): |
| 174 | a = get_mat(4) |
| 175 | b = a[::-1, :] |
| 176 | assert_equal(flipud(a), b) |
| 177 | a = [[0, 1, 2], |
| 178 | [3, 4, 5]] |
| 179 | b = [[3, 4, 5], |
| 180 | [0, 1, 2]] |
| 181 | assert_equal(flipud(a), b) |
| 182 | |
| 183 | |
| 184 | class TestHistogram2d: |
nothing calls this directly
no test coverage detected