diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-03-08 20:39:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-03-08 20:39:23 +0300 |
commit | db2c855bf9d54fe512fa695ee6bf6c314331fe7c (patch) | |
tree | 7610af0d516f9a52f1333dc0e3c9ad3db9b66e2a /src/utils/chatutils_unittest.cc | |
parent | ff6ee78dda76f0cf778db1546c113bb83a0ed08e (diff) | |
download | plus-db2c855bf9d54fe512fa695ee6bf6c314331fe7c.tar.gz plus-db2c855bf9d54fe512fa695ee6bf6c314331fe7c.tar.bz2 plus-db2c855bf9d54fe512fa695ee6bf6c314331fe7c.tar.xz plus-db2c855bf9d54fe512fa695ee6bf6c314331fe7c.zip |
Add configuration path initialisation in tests where it need.
Diffstat (limited to 'src/utils/chatutils_unittest.cc')
-rw-r--r-- | src/utils/chatutils_unittest.cc | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/src/utils/chatutils_unittest.cc b/src/utils/chatutils_unittest.cc index a62cd57a4..7b3dd251e 100644 --- a/src/utils/chatutils_unittest.cc +++ b/src/utils/chatutils_unittest.cc @@ -20,6 +20,9 @@ #include "catch.hpp" #include "client.h" +#include "configuration.h" +#include "configmanager.h" +#include "dirs.h" #include "actormanager.h" #include "graphicsmanager.h" @@ -61,8 +64,6 @@ TEST_CASE("chatutils replaceVars") imageHelper = new SDLImageHelper(); mainGraphics = new SDLGraphics; - gui = new Gui(); - gui->postInit(mainGraphics); #ifdef USE_SDL2 SDLImageHelper::setRenderer(graphicsManager.createRenderer( graphicsManager.createWindow(640, 480, 0, @@ -72,6 +73,15 @@ TEST_CASE("chatutils replaceVars") graphicsManager.createWindow(640, 480, 0, SDL_ANYFORMAT | SDL_SWSURFACE); #endif // USE_SDL2 + Dirs::initRootDir(); + Dirs::initHomeDir(); + + ConfigManager::initConfiguration(); + getConfigDefaults2(config.getDefaultValues()); + + gui = new Gui(); + gui->postInit(mainGraphics); + ActorSprite::load(); localPlayer = new LocalPlayer(static_cast<BeingId>(1), BeingTypeId_zero); |