(self, a, suffix, start, end, out, dt)
| 548 | [True, False]), |
| 549 | ]) |
| 550 | def test_endswith(self, a, suffix, start, end, out, dt): |
| 551 | a = np.array(a, dtype=dt) |
| 552 | suffix = np.array(suffix, dtype=dt) |
| 553 | assert_array_equal(np.strings.endswith(a, suffix, start, end), out) |
| 554 | |
| 555 | @pytest.mark.parametrize("a,chars,out", [ |
| 556 | ("", None, ""), |
nothing calls this directly
no test coverage detected