(self)
| 580 | pass |
| 581 | |
| 582 | def test_1D_array(self): |
| 583 | a = np.array([1, 2, 3, 4]) |
| 584 | res = hsplit(a, 2) |
| 585 | desired = [np.array([1, 2]), np.array([3, 4])] |
| 586 | compare_results(res, desired) |
| 587 | |
| 588 | def test_2D_array(self): |
| 589 | a = np.array([[1, 2, 3, 4], |
nothing calls this directly
no test coverage detected