1 /* AUTOGENERATED FILE. DO NOT EDIT. */
2
3 //=======Test Runner Used To Run Each Test Below=====
4 #define RUN_TEST(TestFunc, TestLineNum) \
5 { \
6 Unity.CurrentTestName = #TestFunc; \
7 Unity.CurrentTestLineNumber = TestLineNum; \
8 Unity.NumberOfTests++; \
9 if (TEST_PROTECT()) \
10 { \
11 setUp(); \
12 TestFunc(); \
13 } \
14 if (TEST_PROTECT() && !TEST_IS_IGNORED) \
15 { \
16 tearDown(); \
17 } \
18 UnityConcludeTest(); \
19 }
20
21 //=======Automagically Detected Files To Include=====
22 #include "unity.h"
23 #include <setjmp.h>
24 #include <stdio.h>
25 #include "config.h"
26 #include "ntp.h"
27 #include "ntp_stdlib.h"
28 #include "ntp_calendar.h"
29 #include <limits.h>
30
31 //=======External Functions This Runner Calls=====
32 extern void setUp(void);
33 extern void tearDown(void);
34 extern void test_AddTrustedKeys(void);
35 extern void test_AddUntrustedKey(void);
36 extern void test_HaveKeyCorrect(void);
37 extern void test_HaveKeyIncorrect(void);
38 extern void test_AddWithAuthUseKey(void);
39 extern void test_EmptyKey(void);
40 extern void test_auth_log2(void);
41
42
43 //=======Test Reset Option=====
44 void resetTest(void);
resetTest(void)45 void resetTest(void)
46 {
47 tearDown();
48 setUp();
49 }
50
51 char const *progname;
52
53
54 //=======MAIN=====
main(int argc,char * argv[])55 int main(int argc, char *argv[])
56 {
57 progname = argv[0];
58 UnityBegin("authkeys.c");
59 RUN_TEST(test_AddTrustedKeys, 25);
60 RUN_TEST(test_AddUntrustedKey, 26);
61 RUN_TEST(test_HaveKeyCorrect, 27);
62 RUN_TEST(test_HaveKeyIncorrect, 28);
63 RUN_TEST(test_AddWithAuthUseKey, 29);
64 RUN_TEST(test_EmptyKey, 30);
65 RUN_TEST(test_auth_log2, 31);
66
67 return (UnityEnd());
68 }
69