(self, buf, width, fillchar, res, dt)
| 873 | ('abc', 10, '*', '***abc****'), |
| 874 | ]) |
| 875 | def test_center(self, buf, width, fillchar, res, dt): |
| 876 | buf = np.array(buf, dtype=dt) |
| 877 | fillchar = np.array(fillchar, dtype=dt) |
| 878 | res = np.array(res, dtype=dt) |
| 879 | assert_array_equal(np.strings.center(buf, width, fillchar), res) |
| 880 | |
| 881 | @pytest.mark.parametrize("buf,width,fillchar,res", [ |
| 882 | ('abc', 10, ' ', 'abc '), |
nothing calls this directly
no test coverage detected