(examples, *args, **kwargs)
| 122 | |
| 123 | |
| 124 | def assertAllNotClose(examples, *args, **kwargs): |
| 125 | for a, b in examples: |
| 126 | assertIsNotClose(a, b, *args, **kwargs) |
| 127 | |
| 128 | |
| 129 | # test_negative_tolerances: ValueError should be raised if either tolerance is less than zero |
no test coverage detected