aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/tests/forcelinktest.cpp
blob: c62f327585f4d56d7e8e31c77ec72df7a748dba0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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