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