You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5 KiB

4 years ago
#### Functional
###### Has the requirement for the allowed packages been respected? (Reminder for this project: only [standard packages](https://golang.org/pkg/))
##### Play and finish the game.
4 years ago
###### Does it ask for a name?
4 years ago
##### Play and finish the game.
4 years ago
4 years ago
###### Does the scoreboard appear?
4 years ago
##### Try making a GET request to the GO server API.
4 years ago
###### Does the request present the right information?
##### Try making a POST request to the GO server API, then make a GET request to see if the information posted is correct.
4 years ago
4 years ago
###### Is the information correct?
4 years ago
4 years ago
###### Does the scoreboard have position, name and score properties?
4 years ago
###### Is the scoreboard in descending order (ordered by score)?
4 years ago
###### Does the scoreboard have pagination?
##### Try to see the next page.
4 years ago
4 years ago
###### Does it display the next page of scores correctly?
4 years ago
##### Play and finish the game, then search for your name.
4 years ago
###### Does the scoreboard present your name and all the right information?
##### Try using the Dev Tool/Performance.
4 years ago
###### Can you confirm that there are no frame drops?
4 years ago
##### Try using the Dev Tool/Performance
2 years ago
###### Does the game run at/or around 60fps? (from 50 to 60 or more)
4 years ago
#### Bonus
###### +Does the project runs quickly and effectively? (Favoring recursive, no unnecessary data requests, etc...)
4 years ago
###### +Does the code obey the [good practices](../../good-practices/README.md)?
4 years ago
###### +Is the code using asynchronicity to increase performance?
###### +Do you think this project is well done in general?