(self)
| 117 | assert_equal(out, tgt) |
| 118 | |
| 119 | def test_compress(self): |
| 120 | arr = [[0, 1, 2, 3, 4], |
| 121 | [5, 6, 7, 8, 9]] |
| 122 | tgt = [[5, 6, 7, 8, 9]] |
| 123 | out = np.compress([0, 1], arr, axis=0) |
| 124 | assert_equal(out, tgt) |
| 125 | |
| 126 | def test_count_nonzero(self): |
| 127 | arr = [[0, 1, 7, 0, 0], |
nothing calls this directly
no test coverage detected