(self)
| 146 | self.assertTrue(nm.check_cyclic([a.num, b.num, c.num, d.num])) |
| 147 | |
| 148 | def test_enumerate_midps(self): |
| 149 | g = GraphTest.g |
| 150 | |
| 151 | for a, b, c in g.all_midps(): |
| 152 | self.assertTrue(g.check_midp([a, b, c])) |
| 153 | self.assertTrue(nm.check_midp([a.num, b.num, c.num])) |
| 154 | |
| 155 | def test_enumerate_circles(self): |
| 156 | g = GraphTest.g |
nothing calls this directly
no test coverage detected