(self)
| 17 | assert type(inter) == Intersection |
| 18 | |
| 19 | def test_equality(self): |
| 20 | node = Node(name='A') |
| 21 | inter1 = Intersection(coordsys=Node, hit=Node, point=(0.0, 0.0, 0.0), distance=0.0) |
| 22 | inter2 = Intersection(coordsys=Node, hit=Node, point=(0.0, 0.0, 0.0), distance=0.0) |
| 23 | assert inter1 == inter2 |
| 24 | |
| 25 | |
| 26 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected