(self, in_, out, dt)
| 334 | ('ABC\n', True), |
| 335 | ]) |
| 336 | def test_isupper(self, in_, out, dt): |
| 337 | in_ = np.array(in_, dtype=dt) |
| 338 | assert_array_equal(np.strings.isupper(in_), out) |
| 339 | |
| 340 | @pytest.mark.parametrize("in_,out", [ |
| 341 | ('', False), |
nothing calls this directly
no test coverage detected