(self)
| 613 | pass |
| 614 | |
| 615 | def test_2D_array(self): |
| 616 | a = np.array([[1, 2, 3, 4], |
| 617 | [1, 2, 3, 4]]) |
| 618 | res = vsplit(a, 2) |
| 619 | desired = [np.array([[1, 2, 3, 4]]), np.array([[1, 2, 3, 4]])] |
| 620 | compare_results(res, desired) |
| 621 | |
| 622 | |
| 623 | class TestDsplit: |
nothing calls this directly
no test coverage detected