Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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