From 1cb5fdc15c5f8399ca08377eb498f7c27c2eee85 Mon Sep 17 00:00:00 2001 From: Benjamin Paassen Date: Thu, 6 Mar 2014 11:54:40 +0000 Subject: reworked the model classes according to manipulated GraphNode and removed some bugs resulting from a misunderstanding between abtract domain declarations and instances. git-svn-id: file:///var/local/svn/basicwriter@29 daaaf23c-2e50-4459-9457-1e69db5a47bf --- test/model/GraphNode.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/model') diff --git a/test/model/GraphNode.cpp b/test/model/GraphNode.cpp index 7f6f2f9..bdb633c 100644 --- a/test/model/GraphNode.cpp +++ b/test/model/GraphNode.cpp @@ -39,9 +39,9 @@ public: TEST(GraphNodeTest, FullyQuallifiedNameTest) { std::shared_ptr nd1{new TestGraphNode( - GraphNodeType::None, nullptr, "node1")}; + GraphNodeType::Domain, nullptr, "node1")}; std::shared_ptr nd2{new TestGraphNode( - GraphNodeType::None, nd1, "node2")}; + GraphNodeType::Domain, nd1, "node2")}; ASSERT_STREQ("node1.node2", nd2->getFullyQualifiedName().c_str()); } -- cgit v1.2.3