diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-08-30 01:16:45 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-08-30 01:16:45 +0300 |
commit | a5f01058610fbb5ce099d0a11acf2eaf6a4b3515 (patch) | |
tree | f372942f301e31bb831ac2c3a0c46ffd5cda5f39 /src/unittests/resources/map | |
parent | 04b6502017530882a754f5c8ae6adb592324d723 (diff) | |
download | plus-a5f01058610fbb5ce099d0a11acf2eaf6a4b3515.tar.gz plus-a5f01058610fbb5ce099d0a11acf2eaf6a4b3515.tar.bz2 plus-a5f01058610fbb5ce099d0a11acf2eaf6a4b3515.tar.xz plus-a5f01058610fbb5ce099d0a11acf2eaf6a4b3515.zip |
Add missing init code into some unit tests.
Diffstat (limited to 'src/unittests/resources/map')
-rw-r--r-- | src/unittests/resources/map/speciallayer.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/unittests/resources/map/speciallayer.cc b/src/unittests/resources/map/speciallayer.cc index 0461a98c4..c46c67626 100644 --- a/src/unittests/resources/map/speciallayer.cc +++ b/src/unittests/resources/map/speciallayer.cc @@ -21,12 +21,16 @@ #include "unittests/unittests.h" #include "client.h" +#include "dirs.h" #include "logger.h" #include "graphicsmanager.h" #include "being/actorsprite.h" +#include "gui/userpalette.h" +#include "gui/theme.h" + #include "enums/resources/map/mapitemtype.h" #include "fs/virtfs/fs.h" @@ -72,6 +76,13 @@ TEST_CASE("SpecialLayer updateCache", "") graphicsManager.createWindow(640, 480, 0, SDL_ANYFORMAT | SDL_SWSURFACE); #endif // USE_SDL2 + userPalette = new UserPalette; + theme = new Theme; + Theme::selectSkin(); + + Dirs::initRootDir(); + Dirs::initHomeDir(); + ActorSprite::load(); SpecialLayer *layer = nullptr; @@ -275,6 +286,8 @@ TEST_CASE("SpecialLayer updateCache", "") delete layer; ResourceManager::cleanOrphans(); + delete2(userPalette); + delete2(theme); delete2(client); VirtFs::unmountDirSilent("data"); VirtFs::unmountDirSilent("../data"); |