(self)
| 525 | |
| 526 | |
| 527 | def test_6(self): |
| 528 | |
| 529 | # instantiate and register the library |
| 530 | tl = PCellTestLib() |
| 531 | |
| 532 | lib = pya.Library.library_by_name("PCellTestLib") |
| 533 | |
| 534 | param = { "w": 3.0, "h": 8.0, "l": pya.LayerInfo(3, 0) } |
| 535 | pcell_var = lib.layout().create_cell("Box", param) |
| 536 | |
| 537 | self.assertEqual(lib.layout().begin_shapes(pcell_var.cell_index(), lib.layout().layer(3, 0)).shape().__str__(), "box (-1500,-4000;1500,4000)") |
| 538 | |
| 539 | |
| 540 | def test_7(self): |
nothing calls this directly
no test coverage detected