Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kickflip-games/gmtk2020
Game for GMTK2020
https://github.com/kickflip-games/gmtk2020
gmtk2020 unity
Last synced: 6 days 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 (over 4 years ago)
- Default Branch: dev
- Last Pushed: 2020-07-12T06:17:26.000Z (over 4 years ago)
- Last Synced: 2024-10-19T12:53:27.143Z (27 days 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
![Build ๐งฑ](https://github.com/avivajpeyi/unity_template_project/workflows/Build%20%F0%9F%A7%B1/badge.svg?branch=master)
![Test ๐งช](https://github.com/avivajpeyi/unity_template_project/workflows/Test%20%F0%9F%A7%AA/badge.svg?branch=master)
##### [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![itch.io page for game](https://avivajpeyi.itch.io/gmtk2020)
# 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