Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code should be well-tested before being contributed.
There are a number of ways you can test your code. We , but we recommend you start with unit tests.

Unit Tests

Unit tests refer to testing individual components or units of code in isolation. We aim to ensure that each unit of code functions properly and that it meets intended behaviours. A unit can a function, method, class or module - depending on granularity of the code being tested.

...