135375f98Sopenharmony_ci/* AUTOGENERATED FILE. DO NOT EDIT. */ 235375f98Sopenharmony_ci 335375f98Sopenharmony_ci/*=======Test Runner Used To Run Each Test Below=====*/ 435375f98Sopenharmony_ci#define RUN_TEST_NO_ARGS 535375f98Sopenharmony_ci#define RUN_TEST(TestFunc, TestLineNum, ...) \ 635375f98Sopenharmony_ci{ \ 735375f98Sopenharmony_ci Unity.CurrentTestName = #TestFunc "(" #__VA_ARGS__ ")"; \ 835375f98Sopenharmony_ci Unity.CurrentTestLineNumber = TestLineNum; \ 935375f98Sopenharmony_ci Unity.NumberOfTests++; \ 1035375f98Sopenharmony_ci if (TEST_PROTECT()) \ 1135375f98Sopenharmony_ci { \ 1235375f98Sopenharmony_ci setUp(); \ 1335375f98Sopenharmony_ci TestFunc(__VA_ARGS__); \ 1435375f98Sopenharmony_ci } \ 1535375f98Sopenharmony_ci if (TEST_PROTECT() && !TEST_IS_IGNORED) \ 1635375f98Sopenharmony_ci { \ 1735375f98Sopenharmony_ci tearDown(); \ 1835375f98Sopenharmony_ci } \ 1935375f98Sopenharmony_ci UnityConcludeTest(); \ 2035375f98Sopenharmony_ci} 2135375f98Sopenharmony_ci 2235375f98Sopenharmony_ci/*=======Automagically Detected Files To Include=====*/ 2335375f98Sopenharmony_ci#include "unity.h" 2435375f98Sopenharmony_ci#include <setjmp.h> 2535375f98Sopenharmony_ci#include <stdio.h> 2635375f98Sopenharmony_ci#include "funky.h" 2735375f98Sopenharmony_ci#include "stanky.h" 2835375f98Sopenharmony_ci#include <setjmp.h> 2935375f98Sopenharmony_ci 3035375f98Sopenharmony_ci/*=======External Functions This Runner Calls=====*/ 3135375f98Sopenharmony_ciextern void setUp(void); 3235375f98Sopenharmony_ciextern void tearDown(void); 3335375f98Sopenharmony_ciextern void test_TheFirstThingToTest(void); 3435375f98Sopenharmony_ciextern void test_TheSecondThingToTest(void); 3535375f98Sopenharmony_ciextern void test_TheThirdThingToTest(void); 3635375f98Sopenharmony_ciextern void test_TheFourthThingToTest(void); 3735375f98Sopenharmony_ci 3835375f98Sopenharmony_ci 3935375f98Sopenharmony_ci/*=======Test Reset Option=====*/ 4035375f98Sopenharmony_civoid resetTest(void); 4135375f98Sopenharmony_civoid resetTest(void) 4235375f98Sopenharmony_ci{ 4335375f98Sopenharmony_ci tearDown(); 4435375f98Sopenharmony_ci setUp(); 4535375f98Sopenharmony_ci} 4635375f98Sopenharmony_ci 4735375f98Sopenharmony_ci 4835375f98Sopenharmony_ci/*=======MAIN=====*/ 4935375f98Sopenharmony_ciint main(void) 5035375f98Sopenharmony_ci{ 5135375f98Sopenharmony_ci UnityBegin("testdata/testsample.c"); 5235375f98Sopenharmony_ci RUN_TEST(test_TheFirstThingToTest, 21, RUN_TEST_NO_ARGS); 5335375f98Sopenharmony_ci RUN_TEST(test_TheSecondThingToTest, 43, RUN_TEST_NO_ARGS); 5435375f98Sopenharmony_ci RUN_TEST(test_TheThirdThingToTest, 53, RUN_TEST_NO_ARGS); 5535375f98Sopenharmony_ci RUN_TEST(test_TheFourthThingToTest, 58, RUN_TEST_NO_ARGS); 5635375f98Sopenharmony_ci 5735375f98Sopenharmony_ci return (UnityEnd()); 5835375f98Sopenharmony_ci} 59