(self, x, y, a, b)
| 33 | a=integers(min_value=0), |
| 34 | b=integers(min_value=0)) |
| 35 | def test_addition_commutes(self, x, y, a, b): |
| 36 | first = nextafter(x, y, steps=a) |
| 37 | second = nextafter(first, y, steps=b) |
| 38 | combined = nextafter(x, y, steps=a+b) |
| 39 | hypothesis.note(f"{first} -> {second} == {combined}") |
| 40 | |
| 41 | assert_equal_float(second, combined) |
nothing calls this directly
no test coverage detected