test: Added graph view UI tests

This commit is contained in:
Eberhard Graether
2018-11-30 22:34:52 +01:00
parent a51799c279
commit bdce9a1841
20 changed files with 2474 additions and 1 deletions
@@ -0,0 +1,31 @@
#ifndef __INCLUDE__
#define __INCLUDE__
class Class
{
public:
virtual void method();
int member;
};
struct Struct {};
enum Enum
{
ENUM_CONSTANT
};
typedef int TypeDef;
namespace package
{
class C {};
}
struct Str1 {};
struct Str2 {};
struct Str3 {};
struct Str4 {};
struct Str5 {};
#endif