mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-07-11 06:40:31 +00:00
efc1df828f
* Added example that uses unity test fixture
12 lines
214 B
C
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);
|
|
} |