(self)
| 117 | self.assertTrue(nm.check_cong([a.num, b.num, c.num, d.num])) |
| 118 | |
| 119 | def test_enumerate_eqangles(self): |
| 120 | g = GraphTest.g |
| 121 | |
| 122 | for a, b, c, d, x, y, z, t in g.all_eqangles_8points(): |
| 123 | self.assertTrue(g.check_eqangle([a, b, c, d, x, y, z, t])) |
| 124 | self.assertTrue( |
| 125 | nm.check_eqangle( |
| 126 | [a.num, b.num, c.num, d.num, x.num, y.num, z.num, t.num] |
| 127 | ) |
| 128 | ) |
| 129 | |
| 130 | def test_enumerate_eqratios(self): |
| 131 | g = GraphTest.g |
nothing calls this directly
no test coverage detected