// NeL - MMORPG Framework // Copyright (C) 2010 Winch Gate Property Limited // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as // published by the Free Software Foundation, either version 3 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . #ifndef UT_MISC #define UT_MISC #include "ut_misc_co_task.h" #include "ut_misc_command.h" #include "ut_misc_common.h" #include "ut_misc_config_file.h" #include "ut_misc_debug.h" #include "ut_misc_dynlibload.h" #include "ut_misc_file.h" #include "ut_misc_pack_file.h" #include "ut_misc_singleton.h" #include "ut_misc_sstring.h" #include "ut_misc_stream.h" #include "ut_misc_variable.h" #include "ut_misc_types.h" #include "ut_misc_string_common.h" // Add a line here when adding a new test CLASS struct CUTMisc : public Test::Suite { CUTMisc() { add(auto_ptr(new CUTMiscCoTask)); add(auto_ptr(new CUTMiscCommand)); add(auto_ptr(new CUTMiscCommon)); add(auto_ptr(new CUTMiscConfigFile)); add(auto_ptr(new CUTMiscDebug)); add(auto_ptr(new CUTMiscDynLibLoad)); add(auto_ptr(new CUTMiscFile)); add(auto_ptr(new CUTMiscPackFile)); add(auto_ptr(new CUTMiscSingleton)); add(auto_ptr(new CUTMiscSString)); add(auto_ptr(new CUTMiscStream)); add(auto_ptr(new CUTMiscVariable)); add(auto_ptr(new CUTMiscTypes)); add(auto_ptr(new CUTMiscStringCommon)); // Add a line here when adding a new test CLASS } }; #endif