(self)
| 31 | assert isinstance(n, Neighbor), ( |
| 32 | "Can not create skeleton Neighbor instance.") |
| 33 | def test_empty_initialization(self): |
| 34 | n = Neighbor() |
| 35 | assert isinstance(n, Neighbor), ( |
| 36 | "Can not create empty Neighbor instance.") |
| 37 | assert isinstance(n.dr, Vec3D), "Member Vec3D not initialized." |
| 38 | |
| 39 | class Test_index: |
| 40 | def test_correct_type(self, n1): |