()
| 109 | |
| 110 | @pytest.fixture |
| 111 | def box_and_vertex(): |
| 112 | |
| 113 | box_wp = cq.Workplane().box(1, 2, 3) |
| 114 | assy = cq.Assembly(box_wp, name="box") |
| 115 | vertex_wp = cq.Workplane().newObject([cq.Vertex.makeVertex(0, 0, 0)]) |
| 116 | assy.add(vertex_wp, name="vertex") |
| 117 | |
| 118 | return assy |
| 119 | |
| 120 | |
| 121 | @pytest.fixture |
nothing calls this directly
no test coverage detected