-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp_test_code.py
36 lines (26 loc) · 1017 Bytes
/
temp_test_code.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# if i == 10:
# print("testing frame 10 as a strike")
# frame_scores.update({10:10})
# FINAL_STRIKE = True
# continue
# if i == 10:
# print("testing frame 10 as a spare")
# frame_scores.update({10:[7,3]})
# FINAL_SPARE = True
# continue
###################################################################
################--UNIT TEST 1: Perfect Game!--#####################
###################################################################
def unit_test_1():
print("Frame scores: ", frame_scores)
print(" ")
print("Final scores are: ")
calculate_gamescore()
print("CONGRATULATIONS!")
#frame_scores = {1:10,2:10,3:10,4:10,5:10,6:10,7:10,8:10,9:10,10:10,11:10,12:10}
#unit_test_1()
#UNCOMMENT ABOVE TWO LINES FOR UNIT TEST 1
###################################################################
######################--END UNIT TEST 1--##########################
###################################################################
CMD [ "python", "./pseudo.py" ]