(self)
| 153 | self.assertTrue(nm.check_midp([a.num, b.num, c.num])) |
| 154 | |
| 155 | def test_enumerate_circles(self): |
| 156 | g = GraphTest.g |
| 157 | |
| 158 | for a, b, c, d in g.all_circles(): |
| 159 | self.assertTrue(g.check_circle([a, b, c, d])) |
| 160 | self.assertTrue(nm.check_circle([a.num, b.num, c.num, d.num])) |
| 161 | |
| 162 | |
| 163 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected