Skip to content

Commit

Permalink
add unit test for eval_limit_potential_2D method
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Apr 3, 2024
1 parent 5f78923 commit 74e9d85
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/relation/test_relation.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,4 +207,11 @@ def test_invalid_properties(self):
DeltaERelation(coefficients=[np.random.rand(3), np.random.rand(4)])

def test_eval_limit_potential_2D(self):
pass # TODO
delta_E_relation = DeltaERelation(
coefficients=[np.random.rand(3), np.random.rand(3)]
)

delta_E_relation.eval_limit_potential_2D(
x = np.arange(0, 10, 10),
y = np.arange(0, 10, 10),
)

0 comments on commit 74e9d85

Please sign in to comment.