(self)
| 464 | compare_results(res, desired) |
| 465 | |
| 466 | def test_index_split_low_bound(self): |
| 467 | a = np.arange(10) |
| 468 | indices = [0, 5, 7] |
| 469 | res = array_split(a, indices, axis=-1) |
| 470 | desired = [np.array([]), np.arange(0, 5), np.arange(5, 7), |
| 471 | np.arange(7, 10)] |
| 472 | compare_results(res, desired) |
| 473 | |
| 474 | def test_index_split_high_bound(self): |
| 475 | a = np.arange(10) |
nothing calls this directly
no test coverage detected