summaryrefslogtreecommitdiff
path: root/src/unittests/resources/sdlimagehelper.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/unittests/resources/sdlimagehelper.cc')
-rw-r--r--src/unittests/resources/sdlimagehelper.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/unittests/resources/sdlimagehelper.cc b/src/unittests/resources/sdlimagehelper.cc
index 2a3aec45b..fa897c01d 100644
--- a/src/unittests/resources/sdlimagehelper.cc
+++ b/src/unittests/resources/sdlimagehelper.cc
@@ -29,12 +29,16 @@ PRAGMA48(GCC diagnostic pop)
#include "unittests/unittests.h"
#include "client.h"
+#include "dirs.h"
#include "graphicsmanager.h"
#include "being/actorsprite.h"
#include "fs/virtfs/fs.h"
+#include "gui/userpalette.h"
+#include "gui/theme.h"
+
#include "utils/delete2.h"
#include "utils/env.h"
@@ -84,6 +88,13 @@ TEST_CASE("sdlimagehelper combineSurface", "")
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();
SECTION("empty copy1")
@@ -531,6 +542,8 @@ TEST_CASE("sdlimagehelper combineSurface", "")
MSDL_FreeSurface(surface2);
}
+ delete2(userPalette);
+ delete2(theme);
delete2(client);
VirtFs::unmountDirSilent("data");
VirtFs::unmountDirSilent("../data");