(self, in_, out, dt)
| 351 | ('NOT', False), |
| 352 | ]) |
| 353 | def test_istitle(self, in_, out, dt): |
| 354 | in_ = np.array(in_, dtype=dt) |
| 355 | assert_array_equal(np.strings.istitle(in_), out) |
| 356 | |
| 357 | @pytest.mark.parametrize("in_,out", [ |
| 358 | ("", 0), |
nothing calls this directly
no test coverage detected