Skip to content

avivajpeyi/gmtk2020

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build 🧱 Test 🧪

GMKT 2020 Game Jam!

itch.io page for game

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