https://github.com/kickflip-games/gmtk2020
Game for GMTK2020
https://github.com/kickflip-games/gmtk2020
gmtk2020 unity
Last synced: 3 months ago
JSON representation
Game for GMTK2020
- Host: GitHub
- URL: https://github.com/kickflip-games/gmtk2020
- Owner: kickflip-games
- Created: 2020-07-09T10:42:42.000Z (almost 5 years ago)
- Default Branch: dev
- Last Pushed: 2020-07-12T06:17:26.000Z (almost 5 years ago)
- Last Synced: 2025-01-04T05:40:28.739Z (5 months ago)
- Topics: gmtk2020, unity
- Language: C#
- Homepage: https://avivajpeyi.itch.io/gmtk2020
- Size: 2.68 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README


##### [Unity Version: 2019.4.2f1 (LTS)](https://unity3d.com/unity/qa/lts-releases)
##### [gmtk-2020](https://avivajpeyi.itch.io/gmtk2020)
##### [zoomlink](https://monash.zoom.us/j/97279658035?pwd=MG5rZ3ppdGlQM1dJS3cwRm5iaUkvQT09)
##### [googleslides](https://docs.google.com/presentation/d/1HJD5aCsvni2Owi5bLW29mUbUPhZQlVw4xT22ews_vII/edit?usp=sharing)
##### [kanban](https://github.com/avivajpeyi/gmtk2020/projects/1)
# GMKT 2020 Game Jam
# Some notes
* master will build + deploy game to itch
* work in your own branch (branch from dev)
* we'll merge dev -> master to get code onto master## Principles of Unit Testing
Unit tests are supposed to check the functionality of small units of your code, not the whole codebase. Unit tests are not meant to be integration tests/functional automation tests.
### Requirements:
1. 15ms run time for unit tests
2. only test what you code
3. mock other's code
4. categorize tests