remove \r
[extl.git] / extl / string / test / test.h
blob9ea286bbf9ac2c95a1808edd6e468775108f3b64
1 /* ///////////////////////////////////////////////////////////////////////
2 * File: test.h
4 * Created: 08.11.24
5 * Updated: 08.12.24
7 * Brief: The String Library Unit-testing
9 * [<Home>]
10 * Copyright (c) 2008-2020, Waruqi All rights reserved.
11 * //////////////////////////////////////////////////////////////////// */
13 #ifndef EXTL_STRING_TEST_H
14 #define EXTL_STRING_TEST_H
16 /* ///////////////////////////////////////////////////////////////////////
17 * Includes
19 #include "../string.h"
21 #ifdef EXTL_STRING_ATTACHED_STRING_TEST_ENABLE
22 # include "attached_string_test.h"
23 #endif
25 #ifdef EXTL_STRING_SCOPED_STRING_TEST_ENABLE
26 # include "scoped_string_test.h"
27 #endif
29 #ifdef EXTL_STRING_STACK_STRING_TEST_ENABLE
30 # include "stack_string_test.h"
31 #endif
32 /* //////////////////////////////////////////////////////////////////// */
33 #endif /* EXTL_STRING_TEST_H */
34 /* //////////////////////////////////////////////////////////////////// */