diff options
author | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-01-08 20:31:30 +0100 |
---|---|---|
committer | Benjamin Paassen <bpaassen@techfak.uni-bielefeld.de> | 2015-01-08 20:31:30 +0100 |
commit | b05499223916879e051d102e1b7e2fd080f46e7d (patch) | |
tree | f4cade370ee065ed4303ecb71cd47a20ce93c22e /test/plugins/html | |
parent | 2c3b327739b79d5ba7fe931e205bec1ad320b360 (diff) |
further extended advanced document (now list domain is supported as well) and extended DemoOutput accordingly.
Diffstat (limited to 'test/plugins/html')
-rw-r--r-- | test/plugins/html/DemoOutputTest.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/plugins/html/DemoOutputTest.cpp b/test/plugins/html/DemoOutputTest.cpp index 7857314..471ccc3 100644 --- a/test/plugins/html/DemoOutputTest.cpp +++ b/test/plugins/html/DemoOutputTest.cpp @@ -43,8 +43,11 @@ TEST(DemoHTMLTransformer, writeHTML) model::constructBookDomain(mgr, sys, logger); Rooted<model::Domain> headingDom = model::constructHeadingDomain(mgr, sys, bookDom, logger); + Rooted<model::Domain> listDom = + model::constructListDomain(mgr, sys, bookDom, logger); // Construct the document. - Rooted<model::Document> doc = model::constructAdvancedDocument(mgr, bookDom, headingDom); + Rooted<model::Document> doc = + model::constructAdvancedDocument(mgr, bookDom, headingDom, listDom); #ifdef MANAGER_GRAPHVIZ_EXPORT // dump the manager state |