(self)
| 309 | self.assertListEqual(grp.Group, []) |
| 310 | |
| 311 | def testPlacementList(self): |
| 312 | obj = self.Doc.addObject("App::FeaturePython", "Label") |
| 313 | obj.addProperty("App::PropertyPlacementList", "PlmList") |
| 314 | plm = FreeCAD.Placement() |
| 315 | plm.Base = (1, 2, 3) |
| 316 | plm.Rotation = (0, 0, 1, 0) |
| 317 | obj.PlmList = [plm] |
| 318 | cpy = self.Doc.copyObject(obj) |
| 319 | self.assertListEqual(obj.PlmList, cpy.PlmList) |
| 320 | |
| 321 | def testRawAxis(self): |
| 322 | obj = self.Doc.addObject("App::FeaturePython", "Label") |
nothing calls this directly
no test coverage detected