(self)
| 92 | assert r == expected, s |
| 93 | |
| 94 | def test_intent_inout(self): |
| 95 | for s in self._get_input(intent="inout"): |
| 96 | rest = self._sint(s, start=4) |
| 97 | r = self.module.test_inout_bytes4(s) |
| 98 | expected = self._sint(s, end=4) |
| 99 | assert r == expected |
| 100 | |
| 101 | # check that the rest of input string is preserved |
| 102 | assert rest == self._sint(s, start=4) |
nothing calls this directly
no test coverage detected