3#include <State/Message.hpp>
7#include <core/application/MinimalApplication.hpp>
8#include <core/application/MockApplication.hpp>
10#include <ossia/network/domain/domain.hpp>
15#include <catch2/reporters/catch_reporter_event_listener.hpp>
16#include <catch2/reporters/catch_reporter_registrars.hpp>
20struct ScoreTestApplicationStarter final : Catch::EventListenerBase
22 using Catch::EventListenerBase::EventListenerBase;
23 void testRunStarting(
const Catch::TestRunInfo&)
override
25#if !defined(__EMSCRIPTEN__)
26 if(!qEnvironmentVariableIsSet(
"QT_QPA_PLATFORM"))
27 qputenv(
"QT_QPA_PLATFORM",
"offscreen");
33CATCH_REGISTER_LISTENER(ScoreTestApplicationStarter)
Definition MinimalApplication.hpp:23