MAV'RIC
all_tests.h
Go to the documentation of this file.
1 
18 #ifndef ALL_TESTS_H
19 #define ALL_TESTS_H
20 
21 #include "test_maths.h"
22 #include "test_small_matrix.h"
23 #include "test_quick_trig.h"
24 
25 #include <stdint.h>
26 
32 static inline bool run_all_tests() {
33  bool result=true;
34  result=result && run_math_tests();
35 
36  result=result && run_matrix_tests();
37 
38  result=result && run_quick_trig_tests();
39 
41 
42  return result;
43 }
44 
45 #endif
bool run_matrix_tests(void)
Run tests on matrix.
Definition: test_small_matrix.c:24
bool run_math_tests()
run the math functions
Definition: test_maths.c:31
bool run_quick_trig_tests(void)
Run tests on the simplyfied trigonometric functions.
Definition: test_quick_trig.c:23
void profile_quick_trig(void)
Show the simplyfied trigonometric functions profile.
Definition: test_quick_trig.c:37