(self)
| 813 | |
| 814 | class TestMethodsEmptyArray: |
| 815 | def test_encode(self): |
| 816 | res = np.char.encode(np.array([], dtype='U')) |
| 817 | assert_array_equal(res, []) |
| 818 | assert_(res.dtype.char == 'S') |
| 819 | |
| 820 | def test_decode(self): |
| 821 | res = np.char.decode(np.array([], dtype='S')) |
nothing calls this directly
no test coverage detected