(self, x, y, steps)
| 23 | y=floats(), |
| 24 | steps=integers(min_value=0, max_value=2**16)) |
| 25 | def test_count(self, x, y, steps): |
| 26 | assert_equal_float(via_reduce(x, y, steps), |
| 27 | nextafter(x, y, steps=steps)) |
| 28 | |
| 29 | @requires_IEEE_754 |
| 30 | @hypothesis.given( |
nothing calls this directly
no test coverage detected