diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 21:09:23 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-18 21:09:23 +0100 |
commit | ac50d142e59d67ac22af279f34f10405a9a333ea (patch) | |
tree | 81f023bc230718b7304d4205a87259ef80988fbc /test/core | |
parent | 0c06b2798b50ce3f54795d80aa6032175382af54 (diff) |
Removed debug output
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/model/TypesystemTest.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/core/model/TypesystemTest.cpp b/test/core/model/TypesystemTest.cpp index a408700..e6655c1 100644 --- a/test/core/model/TypesystemTest.cpp +++ b/test/core/model/TypesystemTest.cpp @@ -520,9 +520,6 @@ TEST(StructType, creationWithParent) { Rooted<StructType> structWithParentType = createStructTypeWithParent(structType, mgr, logger); -#ifdef MANAGER_GRAPHVIZ_EXPORT - mgr.exportGraphviz("structTypeTest1.dot"); -#endif Variant val = structWithParentType->create(); ASSERT_TRUE(val.isArray()); @@ -544,9 +541,6 @@ TEST(StructType, creationWithParent) ASSERT_EQ("value1", arr[4].asString()); ASSERT_EQ(42, arr[5].asInt()); } -#ifdef MANAGER_GRAPHVIZ_EXPORT - mgr.exportGraphviz("structTypeTest2.dot"); -#endif } TEST(StructType, derivedFrom) |