summaryrefslogtreecommitdiff
path: root/test/core/model/DocumentTest.cpp
diff options
context:
space:
mode:
authorBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2014-12-17 17:11:51 +0100
committerBenjamin Paassen <bpaassen@techfak.uni-bielefeld.de>2014-12-17 17:11:51 +0100
commit93c065174e1aa306ee724dd523ef6b2254c1d388 (patch)
treea25f24f8905e490aab89f4437ca639ea57a430ab /test/core/model/DocumentTest.cpp
parent3e124a41f14fa3a76febba09f4b58b3f5361efdb (diff)
Some (slight) changes to existing structures and first attempts on a test to construct a test comain and a test document out of thin air. I am, indeed, an alchemist.
Diffstat (limited to 'test/core/model/DocumentTest.cpp')
-rw-r--r--test/core/model/DocumentTest.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/test/core/model/DocumentTest.cpp b/test/core/model/DocumentTest.cpp
index 36e7c02..dd883a4 100644
--- a/test/core/model/DocumentTest.cpp
+++ b/test/core/model/DocumentTest.cpp
@@ -20,12 +20,20 @@
#include <core/model/Document.hpp>
+#include "ModelTestUtils.hpp"
+
namespace ousia {
namespace model {
+
+
TEST(Document, testDocumentConstruction)
{
- // Start by constructing the domain.
- //TODO: IMPLEMENT
+ // Construct Manager
+ Manager mgr{1};
+ // Get the domain.
+ Rooted<Domain> domain = constructBookDomain(mgr);
+
+ // TODO: IMPLEMENT
ASSERT_TRUE(true);
}
}