Added example

*  Added example that uses unity test fixture
This commit is contained in:
Warwick Stone
2013-07-17 23:23:09 +10:00
parent 1b9b197298
commit efc1df828f
11 changed files with 208 additions and 0 deletions
@@ -0,0 +1,12 @@
#include "unity_fixture.h"
static void RunAllTests(void)
{
RUN_TEST_GROUP(ProductionCode);
RUN_TEST_GROUP(ProductionCode2);
}
int main(int argc, char * argv[])
{
return UnityMain(argc, argv, RunAllTests);
}