]> git.mdlowis.com Git - projs/libcds.git/blob
56515aed813487df108290ad661aabafdff69d5d
[projs/libcds.git] /
1 /* AUTOGENERATED FILE. DO NOT EDIT. */
2 #include "unity.h"
3 #include <setjmp.h>
4 #include <stdio.h>
5
6 char MessageBuffer[50];
7
8 extern void setUp(void);
9 extern void tearDown(void);
10
11 extern void test_IgnoredTest(void);
12 extern void test_AnotherIgnoredTest(void);
13 extern void test_ThisFunctionHasNotBeenTested_NeedsToBeImplemented(void);
14
15 static void runTest(UnityTestFunction test)
16 {
17   if (TEST_PROTECT())
18   {
19       setUp();
20       test();
21   }
22   if (TEST_PROTECT() && !TEST_IS_IGNORED)
23   {
24     tearDown();
25   }
26 }
27 void resetTest()
28 {
29   tearDown();
30   setUp();
31 }
32
33
34 int main(void)
35 {
36   Unity.TestFile = "test/TestProductionCode2.c";
37   UnityBegin();
38
39   // RUN_TEST calls runTest
40   RUN_TEST(test_IgnoredTest, 13);
41   RUN_TEST(test_AnotherIgnoredTest, 18);
42   RUN_TEST(test_ThisFunctionHasNotBeenTested_NeedsToBeImplemented, 23);
43
44   UnityEnd();
45   return 0;
46 }