(self)
| 16 | |
| 17 | class TestRArray(unittest.TestCase): |
| 18 | def test_basics(self) -> None: |
| 19 | a = RArray(int_rprimitive, 10) |
| 20 | assert a.item_type == int_rprimitive |
| 21 | assert a.length == 10 |
| 22 | |
| 23 | def test_str_conversion(self) -> None: |
| 24 | a = RArray(int_rprimitive, 10) |