(self)
| 4307 | assert isinstance(result, ArithRef) |
| 4308 | |
| 4309 | def test_str_from_code(self): |
| 4310 | c = IntVal(65) |
| 4311 | result = StrFromCode(c) |
| 4312 | assert isinstance(result, StringRef) |
| 4313 | |
| 4314 | def test_at(self): |
| 4315 | s = String("s") |
nothing calls this directly
no test coverage detected