First run at adding fixed z model

This commit is contained in:
2022-01-02 15:37:10 -06:00
parent 09e62e01c9
commit 7e9e4e93a9
6 changed files with 195 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
from pdme.model.fixed_z_plane_model import FixedZPlaneModel
def test_fixed_z_plane_model_repr():
model = FixedZPlaneModel(1, 2, 3, 4, 5, 6)
assert repr(model) == "FixedZPlaneModel(1, 2, 3, 4, 5, 6)"