stuff-from-scratch/test/windows/TestWaylandWindow.cpp
2022-11-29 18:00:19 +00:00

20 lines
430 B
C++

#include "WaylandInterface.h"
#include "Window.h"
#include "FileLogger.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();
}