summaryrefslogtreecommitdiffstats
path: root/document/src/tests/forcelinktest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'document/src/tests/forcelinktest.cpp')
-rw-r--r--document/src/tests/forcelinktest.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/document/src/tests/forcelinktest.cpp b/document/src/tests/forcelinktest.cpp
new file mode 100644
index 00000000000..c62f327585f
--- /dev/null
+++ b/document/src/tests/forcelinktest.cpp
@@ -0,0 +1,25 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+#include <vespa/fastos/fastos.h>
+#include <vespa/document/base/forcelink.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+namespace document {
+
+struct ForceLinkTest : public CppUnit::TestFixture {
+ void testUsage();
+
+ CPPUNIT_TEST_SUITE(ForceLinkTest);
+ CPPUNIT_TEST(testUsage);
+ CPPUNIT_TEST_SUITE_END();
+
+};
+
+CPPUNIT_TEST_SUITE_REGISTRATION(ForceLinkTest);
+
+void ForceLinkTest::testUsage()
+{
+ ForceLink link;
+}
+
+} // document