summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Test/CMock/vendor/unity/examples/example_2/test/test_runners/all_tests.c
blob: e706ece7d09f67fb73489c6f0e6d5553ffb809c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#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);
}