summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-18 21:09:23 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-01-18 21:09:23 +0100
commitac50d142e59d67ac22af279f34f10405a9a333ea (patch)
tree81f023bc230718b7304d4205a87259ef80988fbc
parent0c06b2798b50ce3f54795d80aa6032175382af54 (diff)
Removed debug output
-rw-r--r--test/core/model/TypesystemTest.cpp6
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)