Fix crash
[ryzomcore.git] / nel / tools / nel_unit_test / ut_misc.h
blob97bc0d4105bd7d9e50c41b688d6cef06d0b892c0
1 // NeL - MMORPG Framework <http://dev.ryzom.com/projects/nel/>
2 // Copyright (C) 2010-2020 Winch Gate Property Limited
3 //
4 // This program is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU Affero General Public License as
6 // published by the Free Software Foundation, either version 3 of the
7 // License, or (at your option) any later version.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU Affero General Public License for more details.
14 // You should have received a copy of the GNU Affero General Public License
15 // along with this program. If not, see <http://www.gnu.org/licenses/>.
17 #ifndef UT_MISC
18 #define UT_MISC
20 #include "ut_misc_co_task.h"
21 #include "ut_misc_command.h"
22 #include "ut_misc_common.h"
23 #include "ut_misc_config_file.h"
24 #include "ut_misc_debug.h"
25 #include "ut_misc_dynlibload.h"
26 #include "ut_misc_file.h"
27 #include "ut_misc_pack_file.h"
28 #include "ut_misc_singleton.h"
29 #include "ut_misc_sstring.h"
30 #include "ut_misc_stream.h"
31 #include "ut_misc_variable.h"
32 #include "ut_misc_types.h"
33 #include "ut_misc_string_common.h"
34 #include "ut_misc_base64.h"
35 // Add a line here when adding a new test CLASS
37 struct CUTMisc : public Test::Suite
39 CUTMisc()
41 add(std::auto_ptr<Test::Suite>(new CUTMiscCoTask));
42 add(std::auto_ptr<Test::Suite>(new CUTMiscCommand));
43 add(std::auto_ptr<Test::Suite>(new CUTMiscCommon));
44 add(std::auto_ptr<Test::Suite>(new CUTMiscConfigFile));
45 add(std::auto_ptr<Test::Suite>(new CUTMiscDebug));
46 add(std::auto_ptr<Test::Suite>(new CUTMiscDynLibLoad));
47 add(std::auto_ptr<Test::Suite>(new CUTMiscFile));
48 add(std::auto_ptr<Test::Suite>(new CUTMiscPackFile));
49 add(std::auto_ptr<Test::Suite>(new CUTMiscSingleton));
50 add(std::auto_ptr<Test::Suite>(new CUTMiscSString));
51 add(std::auto_ptr<Test::Suite>(new CUTMiscStream));
52 add(std::auto_ptr<Test::Suite>(new CUTMiscVariable));
53 add(std::auto_ptr<Test::Suite>(new CUTMiscTypes));
54 add(std::auto_ptr<Test::Suite>(new CUTMiscStringCommon));
55 add(std::auto_ptr<Test::Suite>(new CUTMiscBase64));
56 // Add a line here when adding a new test CLASS
60 #endif