stuff-from-scratch/test/graphics/TestOpenGlRendering.cpp
2022-11-30 18:28:50 +00:00

21 lines
426 B
C++

#include "TestCase.h"
#include "TestCaseRunner.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();
};