22 lines
353 B
C++
22 lines
353 B
C++
|
#include "TestCase.h"
|
||
|
#include "TestCaseRunner.h"
|
||
|
|
||
|
#include "TestUiApplication.h"
|
||
|
|
||
|
#include "TestFramework.h"
|
||
|
|
||
|
#include "DesktopManager.h"
|
||
|
#include "MeshPrimitives.h"
|
||
|
#include "MeshNode.h"
|
||
|
#include "TextNode.h"
|
||
|
#include "Scene.h"
|
||
|
#include "Widget.h"
|
||
|
|
||
|
#include <memory>
|
||
|
#include <string>
|
||
|
#include <iostream>
|
||
|
|
||
|
TEST_CASE(TestD2dRendering, "graphics")
|
||
|
{
|
||
|
|
||
|
};
|