(self, x, s, a)
| 151 | |
| 152 | @api.convert(recursive=True) |
| 153 | def test_method(self, x, s, a): |
| 154 | while reduce(add, x) > s: |
| 155 | x //= self.called_member(a) |
| 156 | return x |
| 157 | |
| 158 | tc = TestClass() |
| 159 | x = tc.test_method(custom_constant([2, 4]), custom_constant(1), custom_constant(-2)) |
no test coverage detected