Skip to content

Commit 57f332f

Browse files
committed
Enable previously commented test cases
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.
1 parent c961e60 commit 57f332f

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

src/test_processmapper.py

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -526,25 +526,25 @@ def test_case17():
526526

527527

528528
if __name__ == "__main__":
529-
# test_case1() # ok
530-
# test_case2() # ok
531-
# test_case3() # ok
532-
# test_case4() # ok
533-
# test_case5() # ok
534-
# test_case6() # ok
535-
# test_case7() # ok
536-
# test_case8() # ok
537-
# test_case9() # ok
538-
# test_case10(colour_theme="DEFAULT") # ok
539-
# test_case10(colour_theme="BLUEMOUNTAIN") # ok
540-
# test_case10(colour_theme="ORANGEPEEL") # ok
541-
# test_case10(colour_theme="GREENTURTLE") # ok
542-
# test_case10(colour_theme="GREYWOOF") # ok
543-
# test_case10(colour_theme="SUNFLOWER") # ok
544-
# test_case10(colour_theme="PURPLERAIN") # ok
545-
# test_case10(colour_theme="RUBYRED") # ok
546-
# test_case10(colour_theme="TEALWATERS") # ok
547-
# test_case10(colour_theme="SEAFOAMS") # ok
529+
test_case1() # ok
530+
test_case2() # ok
531+
test_case3() # ok
532+
test_case4() # ok
533+
test_case5() # ok
534+
test_case6() # ok
535+
test_case7() # ok
536+
test_case8() # ok
537+
test_case9() # ok
538+
test_case10(colour_theme="DEFAULT") # ok
539+
test_case10(colour_theme="BLUEMOUNTAIN") # ok
540+
test_case10(colour_theme="ORANGEPEEL") # ok
541+
test_case10(colour_theme="GREENTURTLE") # ok
542+
test_case10(colour_theme="GREYWOOF") # ok
543+
test_case10(colour_theme="SUNFLOWER") # ok
544+
test_case10(colour_theme="PURPLERAIN") # ok
545+
test_case10(colour_theme="RUBYRED") # ok
546+
test_case10(colour_theme="TEALWATERS") # ok
547+
test_case10(colour_theme="SEAFOAMS") # ok
548548

549549
# test_case11() # should fail
550550
# test_case12() # should fail

0 commit comments

Comments
 (0)