Skip to content
Snippets Groups Projects
Commit b45d04ad authored by Peter Thedens's avatar Peter Thedens
Browse files

add more notes

parent d55cfb19
No related branches found
No related tags found
1 merge request!23Shift to Unity testing framework
# Unity Notes
* When using Unity, be sure to define `UNITY_INCLUDE_CONFIG_H`
to use the [`unity_config.h`](/Unity/src/unity_config.h).
* For the quad directory, this is done at compile-time of the Unity library [here](/Unity/src/Makefile)
and at compile-time of the test runner [here](/quad/library.mk).
* Follow the examples in the [`Unity/examples`](/Unity/examples) for a guide as well
as the documentation in [`Unity/docs`](/Unity/docs)
* Generally, the format is to start `main()` with `UNITY_BEGIN()`, followed by calls to `RUN_TEST(test_function)` where `test_function` is a test to run, ended with
`return UNITY_END()`
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment