Skip to content

Commit

Permalink
rh
Browse files Browse the repository at this point in the history
  • Loading branch information
stgm committed Oct 31, 2024
1 parent 47ee694 commit e4b864d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/rechthoekenTest.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def testCase():
def check_identical_rectangle(test):
"""het programma identificeert gelijke rechthoeken"""
def testCase():
input_entries = ["0,7", "0,4", "6,13", "2,6"]
input_entries = ["0", "7", "0", "4", "6", "13", "2", "6"]
target_1 = ['zijn gelijk!', 'are identical!']
target_2 = ['vierkant!', ' square,']
target_3 = ['niks aan', 'to report']
Expand All @@ -70,7 +70,7 @@ def testCase():
def check_identical_square(test):
"""het programma identificeert gelijke vierkanten"""
def testCase():
input_entries = ["0,7", "0,7", "6,13", "2,9"]
input_entries = ["0", "7", "0", "7", "6", "13", "2", "9"]
target_1 = ['zijn gelijk!', 'are identical!']
target_2 = ['vierkant!', ' square,']
target_3 = ['niks aan', 'to report']
Expand All @@ -84,7 +84,7 @@ def testCase():
def check_no_result(test):
"""het programma rapporteert teleurstelling bij gebrek aan gelijkheid"""
def testCase():
input_entries = ["0,7", "0,7", "6,15", "2,9"]
input_entries = ["0", "7", "0", "7", "6", "15", "2", "9"]
target_1 = ['zijn gelijk!', 'are identical!']
target_2 = ['vierkant!', ' square,']
target_3 = ['niks aan', 'to report']
Expand Down

0 comments on commit e4b864d

Please sign in to comment.