mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03: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);
|
||
|
}
|