• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "unity_fixture.h"
2 
RunAllTests(void)3 static void RunAllTests(void)
4 {
5   RUN_TEST_GROUP(ProductionCode);
6   RUN_TEST_GROUP(ProductionCode2);
7 }
8 
main(int argc,const char * argv[])9 int main(int argc, const char * argv[])
10 {
11   return UnityMain(argc, argv, RunAllTests);
12 }
13