Skip to content

Commit

Permalink
Enable previously commented test cases
Browse files Browse the repository at this point in the history
Re-enabled multiple test cases for immediate execution instead of keeping them commented out. This change ensures that all tests run automatically, which enhances test coverage and provides immediate feedback on potential issues. No impact on tests expected other than improved validation.
  • Loading branch information
csgoh committed Jul 28, 2024
1 parent c961e60 commit 57f332f
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions src/test_processmapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -526,25 +526,25 @@ def test_case17():


if __name__ == "__main__":
# test_case1() # ok
# test_case2() # ok
# test_case3() # ok
# test_case4() # ok
# test_case5() # ok
# test_case6() # ok
# test_case7() # ok
# test_case8() # ok
# test_case9() # ok
# test_case10(colour_theme="DEFAULT") # ok
# test_case10(colour_theme="BLUEMOUNTAIN") # ok
# test_case10(colour_theme="ORANGEPEEL") # ok
# test_case10(colour_theme="GREENTURTLE") # ok
# test_case10(colour_theme="GREYWOOF") # ok
# test_case10(colour_theme="SUNFLOWER") # ok
# test_case10(colour_theme="PURPLERAIN") # ok
# test_case10(colour_theme="RUBYRED") # ok
# test_case10(colour_theme="TEALWATERS") # ok
# test_case10(colour_theme="SEAFOAMS") # ok
test_case1() # ok
test_case2() # ok
test_case3() # ok
test_case4() # ok
test_case5() # ok
test_case6() # ok
test_case7() # ok
test_case8() # ok
test_case9() # ok
test_case10(colour_theme="DEFAULT") # ok
test_case10(colour_theme="BLUEMOUNTAIN") # ok
test_case10(colour_theme="ORANGEPEEL") # ok
test_case10(colour_theme="GREENTURTLE") # ok
test_case10(colour_theme="GREYWOOF") # ok
test_case10(colour_theme="SUNFLOWER") # ok
test_case10(colour_theme="PURPLERAIN") # ok
test_case10(colour_theme="RUBYRED") # ok
test_case10(colour_theme="TEALWATERS") # ok
test_case10(colour_theme="SEAFOAMS") # ok

# test_case11() # should fail
# test_case12() # should fail
Expand Down

0 comments on commit 57f332f

Please sign in to comment.