1# Testing your code
2
3Run the tests with:
4
5```
6make clean test
7```
8
9## Coverage / what to test
10
11Each feature in GitLab Workhorse should have an integration test that
12verifies that the feature 'kicks in' on the right requests and leaves
13other requests unaffected. It is better to also have package-level tests
14for specific behavior but the high-level integration tests should have
15the first priority during development.
16
17It is OK if a feature is only covered by integration tests.
18