• Home
Name Date Size #Lines LOC

..--

src/12-May-2024-411327

test/12-May-2024-413320

rakefile.rbD12-May-20241 KiB4529

rakefile_helper.rbD12-May-20246.2 KiB184145

readme.mdD12-May-20241,011 1813

readme.md

1# Unity Fixtures
2
3This Framework is an optional add-on to Unity.  By including unity_framework.h in place of unity.h,
4you may now work with Unity in a manner similar to CppUTest.  This framework adds the concepts of
5test groups and gives finer control of your tests over the command line.
6
7This framework is primarily supplied for those working through James Grenning's book on Embedded
8Test Driven Development, or those coming to Unity from CppUTest. We should note that using this
9framework glosses over some of the features of Unity, and makes it more difficult
10to integrate with other testing tools like Ceedling and CMock.
11
12# Dependency Notification
13
14Fixtures, by default, uses the Memory addon as well. This is to make it simple for those trying to
15follow along with James' book. Using them together is completely optional. You may choose to use
16Fixtures without Memory handling by defining `UNITY_FIXTURE_NO_EXTRAS`. It will then stop automatically
17pulling in extras and leave you to do it as desired.
18