diff options
Diffstat (limited to 'src/unittests/resources/sdlimagehelper.cc')
-rw-r--r-- | src/unittests/resources/sdlimagehelper.cc | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/unittests/resources/sdlimagehelper.cc b/src/unittests/resources/sdlimagehelper.cc index fa897c01d..e76e6f26d 100644 --- a/src/unittests/resources/sdlimagehelper.cc +++ b/src/unittests/resources/sdlimagehelper.cc @@ -29,6 +29,8 @@ PRAGMA48(GCC diagnostic pop) #include "unittests/unittests.h" #include "client.h" +#include "configmanager.h" +#include "configuration.h" #include "dirs.h" #include "graphicsmanager.h" @@ -89,12 +91,16 @@ TEST_CASE("sdlimagehelper combineSurface", "") #endif // USE_SDL2 userPalette = new UserPalette; - theme = new Theme; - Theme::selectSkin(); Dirs::initRootDir(); Dirs::initHomeDir(); + setBrandingDefaults(branding); + ConfigManager::initConfiguration(); + + theme = new Theme; + Theme::selectSkin(); + ActorSprite::load(); SECTION("empty copy1") |