(self)
| 435 | compare_results(res, desired) |
| 436 | |
| 437 | def test_index_split_low_bound(self): |
| 438 | a = np.arange(10) |
| 439 | indices = [0, 5, 7] |
| 440 | res = array_split(a, indices, axis=-1) |
| 441 | desired = [np.array([]), np.arange(0, 5), np.arange(5, 7), |
| 442 | np.arange(7, 10)] |
| 443 | compare_results(res, desired) |
| 444 | |
| 445 | def test_index_split_high_bound(self): |
| 446 | a = np.arange(10) |
nothing calls this directly
no test coverage detected