(self, value)
| 2930 | ) |
| 2931 | |
| 2932 | def assertIsPositiveZero(self, value): |
| 2933 | self.assertTrue( |
| 2934 | value == 0 and math.copysign(1, value) > 0, |
| 2935 | msg="Expected a positive zero, got {!r}".format(value) |
| 2936 | ) |
| 2937 | |
| 2938 | def assertIsNegativeZero(self, value): |
| 2939 | self.assertTrue( |
no test coverage detected