(self)
| 26 | a = Atom(True) |
| 27 | assert isinstance(a, Atom), "Can not create skeleton Atom instance." |
| 28 | def test_empty_initialization(self): |
| 29 | a = Atom() |
| 30 | assert isinstance(a, Atom), "Can not create empty Atom instance." |
| 31 | assert isinstance(a.r, Vec3D), "Member Vec3D not initialized." |
| 32 | assert isinstance(a.f, Vec3D), "Member Vec3D not initialized." |
| 33 | assert isinstance(a.fRef, Vec3D), "Member Vec3D not initialized." |
| 34 | |
| 35 | class Test_hasNeighborList: |
| 36 | def test_correct_type(self, a1): |