forked from philipperemy/digital-setting-circles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest.h
43 lines (32 loc) · 716 Bytes
/
Test.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include <stdbool.h>
#include "StarData.h"
#include "TestCase.h"
#include <string>
#ifndef TEST_H
#define TEST_H
class Test : public TestCase
{
public:
void run_all();
//StarData.h
void test_StarData();
void test_StarDataNamespaceFunctions();
//MathLib.h
void test_MathLib_trigonometric();
void test_MathLib_exponential_logarithmic();
void test_MathLib_hyperbolic();
void test_power();
void test_nearest_absolute_remainder();
void test_miscellaneous();
//Util.h
void test_Util();
//Encoder.h
void test_Encoder();
//Data.h
void test_Data();
//Object.h
void test_Object();
//Thread.h
void test_Thread();
};
#endif //TEST_H