Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.21 KB

README.md

File metadata and controls

26 lines (20 loc) · 1.21 KB

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