stuff-from-scratch/test/windows/TestWaylandWindow.cpp
2023-10-02 16:27:40 +01:00

20 lines
458 B
C++

#include "WaylandInterface.h"
#include "Window.h"
#include "FileLogger.h"
#include "MainApplication.h"
#include "GuiApplication.h"
#include "TestFramework.h"
TEST_CASE(TestWaylandWindow, "web")
{
FileLogger::GetInstance().Open();
auto app = std::make_unique<GuiApplication>();
//app->setUiInterfaceBackend(UiInterfaceFactory::Backend::WAYLAND);
app->setUiInterfaceBackend(UiInterfaceFactory::Backend::WAYLAND_RASTER);
app->run();
}