1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-24 08:51:36 +01:00
Files
Unity/examples/example_2/test/test_runners/all_tests.c
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);
}