diff --git a/src/test/java/inf112/skeleton/app/ManualTesting b/src/test/java/inf112/skeleton/app/ManualTesting new file mode 100644 index 0000000000000000000000000000000000000000..0db982f299eb539c9fdcffe268168ad62e8fae05 --- /dev/null +++ b/src/test/java/inf112/skeleton/app/ManualTesting @@ -0,0 +1,41 @@ +Here we will describe what manual tests we do. + +Movement testing: +-Right and left +To see if it is possible to move both right and left over th full course of the board I went back and forth and it worked! +-Upward +This i simply did by seeing testing if it was possible to jump, and it was + +Collision testing: +-Right and left +To test if collisions happens form both right and left, I tried walking through a box form either side, it was not +possible so this works! +-Upward +When the layout had a 'flying' box that you can go under, i tested upward collision by trying to jump through it, this +test ended with a positive result so it works as well! +-Downward +In the beginning of the game the player lands on the ground, which means that downward collisions works. + +Enemy testing: +-Killing +To test if it is possible to kill an enemy, I tried to jump up and land on it, which resulted in the enemy being killed +and disappearing. Killing works. +-Getting hurt +By standing in the walking path of an enemy and waiting for it to hit the player this was tested. This resulted in the +player losing a life, and with only 1 life left, the player died. + +Waffle testing: +-picking up +This was tested by jumping to a waffle icon. The waffle icon vanished, and the waffle score went 1 up. Happy to see that +it works. + +Start testing: +-Starting +By pressing enter I tested if it was possible to start a game. It works! +-Starting over again +Tried dying to get to the game over screen and started again. Test passed! +-Checkpoint +Played past all the gruesome enemies to get to a hard earned checkpoint to only die willingly, when starting the game +over again I was relieved to see that the player respawns at the checkpoint. +-Help guide +Presses h and got wonderful instructions on how to play this wonderful game. Workes perfectly! \ No newline at end of file