(self)
| 83 | yield np.array(b"12345") |
| 84 | |
| 85 | def test_intent_in(self): |
| 86 | for s in self._get_input(): |
| 87 | r = self.module.test_in_bytes4(s) |
| 88 | # also checks that s is not changed inplace |
| 89 | expected = self._sint(s, end=4) |
| 90 | assert r == expected, s |
| 91 | |
| 92 | def test_intent_inout(self): |
| 93 | for s in self._get_input(intent="inout"): |
nothing calls this directly
no test coverage detected