Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scp 60 #66

Merged
merged 3 commits into from
Nov 29, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions Team A2/Test Cases/Test Case SCP-47.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
### Test Case Information
| TEST CASE ID | SCP-47|
| :--- | :--- |
| Owner of Test | Ty Hutchison|
| Test Name | Add Solid Floating Block |
| Date of Last Revision | 11/29/2021 |
| Test Objective | Add Solid Floating block for user to use |

### Procedure

|Step | Action | Expected Result | Pass/Fail |
|:---:| :--- | :---- | :---: |
|1| Run the game| The game successfully opens ||
|2| Enter Level 1 | The User will enter level 1 | |
|3| Go through the level and test implemented floating block | The User will go through the level completing it while using the floating block | |
|4| Complete level 1 | The User will complete level 1 | |
|5| Exit the game | The User will exit the game | |

### Test Completion
- **Tester**:
- **Date of Test**:
- **Test Result**:
21 changes: 21 additions & 0 deletions Team A2/Test Cases/Test Case SCP-60.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
### Test Case Information
| TEST CASE ID | SCP-60|
| :--- | :--- |
| Owner of Test | Ty Hutchison|
| Test Name | Fix back-to-menu not working |
| Date of Last Revision | 11/29/2021 |
| Test Objective | Fix bug preventing back to menu option not working in options menu |

### Procedure

|Step | Action | Expected Result | Pass/Fail |
|:---:| :--- | :---- | :---: |
|1| Run the game| The game successfully opens |Pass|
|2| Enter Options Menu | The User will enter option menu|Pass|
|3| Use the back to main menu button at bottom | The User will exit the options screen using the back to menu feature at the bottom |Pass|
|4| Enter Main Menu Screen | The User will enter the Main Menu screen |Pass|

### Test Completion
- **Tester**: Thomas Kwashnak
- **Date of Test**: 11/29/2021 3:57 PM
- **Test Result**: Passed
2 changes: 1 addition & 1 deletion src/Screens/OptionsScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public OptionsScreen() {
new MenuOption("Blue",500,300, () -> Config.playerAvatar = Avatar.CAT_BLUE),
new MenuOption("Green",630,300, () -> Config.playerAvatar = Avatar.CAT_GREEN)
},{
new MenuOption("Hit [Escape] to go back to main menu",100,450)
new MenuOption("Hit [Escape] to go back to main menu",100,450, () -> GamePanel.getScreenCoordinator().setGameState(GameState.MENU))
}
};
setMenuItemsAsGrid(items);
Expand Down