all_tests.c 221 字节
Newer Older
W
Warwick Stone 已提交
1 2 3 4 5 6 7 8
#include "unity_fixture.h"

static void RunAllTests(void)
{
  RUN_TEST_GROUP(ProductionCode);
  RUN_TEST_GROUP(ProductionCode2);
}

9
int main(int argc, const char * argv[])
W
Warwick Stone 已提交
10 11
{
  return UnityMain(argc, argv, RunAllTests);
12
}