(self)
| 551 | pass |
| 552 | |
| 553 | def test_1D_array(self): |
| 554 | a = np.array([1, 2, 3, 4]) |
| 555 | res = hsplit(a, 2) |
| 556 | desired = [np.array([1, 2]), np.array([3, 4])] |
| 557 | compare_results(res, desired) |
| 558 | |
| 559 | def test_2D_array(self): |
| 560 | a = np.array([[1, 2, 3, 4], |
nothing calls this directly
no test coverage detected