(self, buf, sub, start, end, res, dt)
| 770 | ("abcdefghiabc", "abc", 1, None, 9), |
| 771 | ]) |
| 772 | def test_index(self, buf, sub, start, end, res, dt): |
| 773 | buf = np.array(buf, dtype=dt) |
| 774 | sub = np.array(sub, dtype=dt) |
| 775 | assert_array_equal(np.strings.index(buf, sub, start, end), res) |
| 776 | |
| 777 | @pytest.mark.parametrize("buf,sub,start,end", [ |
| 778 | ("abcdefghiabc", "hib", 0, None), |
nothing calls this directly
no test coverage detected