(self)
| 52 | self.assertEqual(0, c.edges().vertices().faces().size()) |
| 53 | |
| 54 | def testEnd(self): |
| 55 | c = CQ(makeUnitSquareWire()) |
| 56 | # 4 because there are 4 vertices |
| 57 | self.assertEqual(4, c.vertices().size()) |
| 58 | # 1 because we started with 1 wire |
| 59 | self.assertEqual(1, c.vertices().end().size()) |
| 60 | |
| 61 | def testAll(self): |
| 62 | "all returns a list of CQ objects, so that you can iterate over them individually" |
nothing calls this directly
no test coverage detected