summaryrefslogtreecommitdiff
path: root/src/utils/xml_unittest.cc
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-03-08 20:39:23 +0300
committerAndrei Karas <akaras@inbox.ru>2017-03-08 20:39:23 +0300
commitdb2c855bf9d54fe512fa695ee6bf6c314331fe7c (patch)
tree7610af0d516f9a52f1333dc0e3c9ad3db9b66e2a /src/utils/xml_unittest.cc
parentff6ee78dda76f0cf778db1546c113bb83a0ed08e (diff)
downloadmv-db2c855bf9d54fe512fa695ee6bf6c314331fe7c.tar.gz
mv-db2c855bf9d54fe512fa695ee6bf6c314331fe7c.tar.bz2
mv-db2c855bf9d54fe512fa695ee6bf6c314331fe7c.tar.xz
mv-db2c855bf9d54fe512fa695ee6bf6c314331fe7c.zip
Add configuration path initialisation in tests where it need.
Diffstat (limited to 'src/utils/xml_unittest.cc')
-rw-r--r--src/utils/xml_unittest.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/utils/xml_unittest.cc b/src/utils/xml_unittest.cc
index 64ee293b7..8cdebf86f 100644
--- a/src/utils/xml_unittest.cc
+++ b/src/utils/xml_unittest.cc
@@ -20,6 +20,9 @@
#include "catch.hpp"
#include "client.h"
+#include "configuration.h"
+#include "configmanager.h"
+#include "dirs.h"
#include "graphicsmanager.h"
#include "being/actorsprite.h"
@@ -66,6 +69,13 @@ TEST_CASE("xml doc")
theme = new Theme;
Theme::selectSkin();
+
+ Dirs::initRootDir();
+ Dirs::initHomeDir();
+
+ ConfigManager::initConfiguration();
+ getConfigDefaults2(config.getDefaultValues());
+
const char *const tempXmlName = "tempxml.xml";
ActorSprite::load();
gui = new Gui();