(self)
| 133 | self.content_check(ua, ua[1], 4 * self.ulen * 2) |
| 134 | |
| 135 | def test_valuesMD(self): |
| 136 | # Check creation of multi-dimensional objects with values |
| 137 | data = [[[self.ucs_value * self.ulen] * 2] * 3] * 4 |
| 138 | ua = np.array(data, dtype=f'U{self.ulen}') |
| 139 | self.content_check(ua, ua[0, 0, 0], 4 * self.ulen * 2 * 3 * 4) |
| 140 | self.content_check(ua, ua[-1, -1, -1], 4 * self.ulen * 2 * 3 * 4) |
| 141 | |
| 142 | |
| 143 | class TestCreateValues_1_UCS2(CreateValues): |
nothing calls this directly
no test coverage detected