Files
Unity/examples/example_2/test/test_runners/all_tests.c
T
Warwick Stone efc1df828f Added example
*  Added example that uses unity test fixture
2013-07-17 23:23:09 +10:00

12 lines
214 B
C

#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);
}