(self)
| 858 | self.assertIsNone(_mtv, msg=help_msg) |
| 859 | |
| 860 | def test_find_intersection_false(self): |
| 861 | poly1 = polygon2.Polygon2([ (0, 1), (0, 3), (5, 3), (5, 1) ]) |
| 862 | poly2 = polygon2.Polygon2([ (3, 4), (2, 6), (7, 5) ]) |
| 863 | poly3 = polygon2.Polygon2([ (6, 2), (9, 3), (9, 1) ]) |
| 864 | |
| 865 | self._find_intersection_fuzzer(poly1, poly2, False, False, None) |
| 866 | self._find_intersection_fuzzer(poly1, poly3, False, False, None) |
| 867 | self._find_intersection_fuzzer(poly2, poly3, False, False, None) |
| 868 | |
| 869 | def test_find_intersection_touching(self): |
| 870 | poly1 = polygon2.Polygon2([ (3, 3), (3, 6), (7, 5), (5, 3) ]) |
nothing calls this directly
no test coverage detected