-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
210 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ | |
global SFX_Volume, DifficultyLevel, keys | ||
|
||
|
||
|
||
class difficulty(Enum): | ||
EASY = 1 | ||
MEDIUM = 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
import sys | ||
|
||
sys.path.append('..') | ||
import pygame | ||
|
||
from fileio import settingIO | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,12 @@ | ||
import sys | ||
|
||
sys.path.append('..') | ||
import os | ||
import pytest | ||
|
||
from views import gameOverScreen | ||
|
||
|
||
def test_start_screen(): | ||
assert True; | ||
assert True | ||
|
||
|
||
def test_shareScoreGraphic(): | ||
assert True; | ||
assert True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
import sys | ||
|
||
sys.path.append('..') | ||
import os | ||
import pytest | ||
|
||
from views import gameScreen | ||
|
||
|
||
def testt_loadImage(): | ||
assert True | ||
assert True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
import sys | ||
import pygame | ||
|
||
sys.path.append('..') | ||
import os | ||
import pytest | ||
|
||
from views import highScoreScreen | ||
|
||
|
||
def test_high_score_screen(): | ||
assert True | ||
|
||
|
||
|
||
def test_write_scores_text(): | ||
assert True | ||
|
||
|
||
|
||
def test_write_no_high_score(): | ||
assert True | ||
|
||
|
||
|
||
def test_draw_buttons(): | ||
assert True | ||
|
||
|
||
|
||
def test_check_cords(): | ||
assert True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
import sys | ||
|
||
sys.path.append('..') | ||
import os | ||
import pytest | ||
|
||
from views import homeScreen | ||
|
||
|
||
def test_home_screen(): | ||
assert True | ||
|
||
|
||
|
||
def test_check_highlight(): | ||
assert True | ||
|
||
|
||
|
||
def test_click_handler(): | ||
assert True | ||
|
||
|
||
|
||
def test_check_click(): | ||
assert True | ||
assert True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,14 @@ | ||
import sys | ||
import unittest.mock as mock | ||
import main | ||
import menuStructure as menuS | ||
|
||
sys.path.append('..') | ||
import os | ||
import pytest | ||
|
||
import main | ||
|
||
|
||
def test_main(): | ||
# Untestable | ||
assert True | ||
|
||
|
||
|
||
def test_quit_game(): | ||
# Untestable | ||
assert True | ||
assert True |
Oops, something went wrong.