()
| 17 | |
| 18 | @pytest.fixture |
| 19 | def n2(): |
| 20 | global d2x, d2y, d2z |
| 21 | d2x, d2y, d2z = 4.0, 5.0, 6.0 |
| 22 | n = Neighbor() |
| 23 | n.dr = Vec3D(d2x, d2y, d2z) |
| 24 | n.d = n.dr.norm() |
| 25 | n.element = 1 |
| 26 | return n |
| 27 | |
| 28 | class Test___cinit__: |
| 29 | def test_skeleton_initialization(self): |