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