mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2025-10-19 05:13:05 +08:00
13 lines
221 B
C
13 lines
221 B
C
#include "unity_fixture.h"
|
|
|
|
static void RunAllTests(void)
|
|
{
|
|
RUN_TEST_GROUP(ProductionCode);
|
|
RUN_TEST_GROUP(ProductionCode2);
|
|
}
|
|
|
|
int main(int argc, const char * argv[])
|
|
{
|
|
return UnityMain(argc, argv, RunAllTests);
|
|
}
|