Branch data Line data Source code
1 : : #include "test_librational_all.h"
2 : :
3 : : /**
4 : : * @brief Run all public librational test suites
5 : : *
6 : : * @return Return status code
7 : : */
8 : 1 : Return test_librational_all(void)
9 : : {
10 : 1 : INITTEST;
11 : :
12 : 1 : bool first_header = true;
13 : :
14 : 1 : HEADER("Formatting");
15 : 1 : SUTE(test_librational_0001,"librational formatting helper test set");
16 : 1 : SUTE(test_librational_0002,"librational itoa conversion helpers");
17 : :
18 : 1 : HEADER("Time");
19 : 1 : SUTE(test_librational_0003,"librational time helpers, duration formatter and ISO date helper");
20 : :
21 : 1 : HEADER("Report and Logger");
22 : 1 : SUTE(test_librational_0004,"librational report(), serp() and slog() helpers");
23 : :
24 : 1 : HEADER("Return Handling");
25 : 1 : SUTE(test_librational_0005,"librational Return flow, normalization and status text");
26 : :
27 : 1 : RETURN_STATUS;
28 : : }
|