stuff-from-scratch/test/windows/TestWaylandWindow.cpp
2023-12-18 10:16:31 +00:00

20 lines
460 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();
}