Hivetek / Planetoid

A spiritual successor to Nade Planet.
GNU General Public License v2.0
1 stars 0 forks source link

Create system for unit testing #16

Open PeterSR opened 9 years ago

PeterSR commented 9 years ago

So far we have simply tested parts of the game manually and we might forget to test if something we tested a long time ago still works with the new changes. To avoid this unit tests and integrations tests are used. These are automatic tests that verify the correctness of a small, independent part (e.g. a function in a bigger module) in the case of unit tests and how different parts play together in the case of integrations tests.