summaryrefslogtreecommitdiff
path: root/test/core/model/DocumentTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/model/DocumentTest.cpp')
-rw-r--r--test/core/model/DocumentTest.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/core/model/DocumentTest.cpp b/test/core/model/DocumentTest.cpp
index 26553dd..9e3229c 100644
--- a/test/core/model/DocumentTest.cpp
+++ b/test/core/model/DocumentTest.cpp
@@ -27,16 +27,16 @@
namespace ousia {
namespace model {
-
TEST(Document, testDocumentConstruction)
{
// Construct Manager
+ Logger logger;
Manager mgr{1};
// Get the domain.
- Rooted<Domain> domain = constructBookDomain(mgr);
+ Rooted<Domain> domain = constructBookDomain(mgr, logger);
// Construct the document.
Rooted<Document> doc = constructBookDocument(mgr, domain);
-
+
// If that works we are happy already.
ASSERT_FALSE(doc.isNull());
}