(self)
| 12 | class TestIntersection: |
| 13 | |
| 14 | def test_init(self): |
| 15 | node = Node(name='A') |
| 16 | inter = Intersection(coordsys=Node, hit=Node, point=(0.0, 0.0, 0.0), distance=0.0) |
| 17 | assert type(inter) == Intersection |
| 18 | |
| 19 | def test_equality(self): |
| 20 | node = Node(name='A') |
nothing calls this directly
no test coverage detected