stuff-from-scratch/test/graphics/TestOpenGlRendering.cpp
2023-01-05 13:16:52 +00:00

22 lines
455 B
C++

#include "TestCase.h"
#include "TestCaseRunner.h"
#include "MainApplication.h"
#include "GuiApplication.h"
#include "TestFramework.h"
#include <memory>
#include <string>
#include <iostream>
TEST_CASE(TestOpenGlRendering, "graphics")
{
auto app = std::make_unique<GuiApplication>();
app->setUiInterfaceBackend(UiInterfaceFactory::Backend::X11);
//app->setUiInterfaceBackend(UiInterfaceFactory::Backend::X11_RASTER);
//app->run();
};