Skip to content

Commit

Permalink
Test second object
Browse files Browse the repository at this point in the history
  • Loading branch information
krystophny committed Nov 23, 2024
1 parent 06760b8 commit 18aec1a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions examples/issue41_abstract_classes/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,8 @@
output = obj.get_value()
assert(abs(output-REF)<TOL)
print(f"OK: {output} == {REF}")

obj2 = itest.myclass_factory.create_myclass("impl")
output2 = obj2.get_value()
assert(abs(output-REF)<TOL)
print(f"OK: {output2} == {REF}")

0 comments on commit 18aec1a

Please sign in to comment.