(self)
| 486 | # equal split. Only test for this case. |
| 487 | |
| 488 | def test_equal_split(self): |
| 489 | a = np.arange(10) |
| 490 | res = split(a, 2) |
| 491 | desired = [np.arange(5), np.arange(5, 10)] |
| 492 | compare_results(res, desired) |
| 493 | |
| 494 | def test_unequal_split(self): |
| 495 | a = np.arange(10) |
nothing calls this directly
no test coverage detected