(self)
| 584 | pass |
| 585 | |
| 586 | def test_2D_array(self): |
| 587 | a = np.array([[1, 2, 3, 4], |
| 588 | [1, 2, 3, 4]]) |
| 589 | res = vsplit(a, 2) |
| 590 | desired = [np.array([[1, 2, 3, 4]]), np.array([[1, 2, 3, 4]])] |
| 591 | compare_results(res, desired) |
| 592 | |
| 593 | |
| 594 | class TestDsplit: |
nothing calls this directly
no test coverage detected