Scoring System Testing Plan - UQdeco2800/2021-ext-studio-2 GitHub Wiki
Overview
The game clock & The scoreboard & The final score on GameOver screen.
Class are unable to unit test
-
src/main/com/deco2800/game/components/score/ScoringSystemV1.java
-
src/main/com/deco2800/game/components/score/ScoreDisplay.java
-
src/main/com/deco2800/game/components/score/TimerDisplay.java
Classes can be unit test
-
Once you press start the game. You should see the clock located at the left middle part. The reason why the timer is there is because Team 2 wants to implement thirsty UI at the top of the clock. The timer should be the format of 00:00. If you play more than one minutes. Then it should be like 01:00.
-
The scoreboard is located at the right bottom corner. The score is the seconds of the game played. When you play more than one minute. It will look like 60 or bigger.
-
The timer and the score values will be stopped when
- Game is over, player health is zero
- You click the quit button
- You close the entire game window
- When the game is over, the final score should be displayed on that screen.