aboutsummaryrefslogtreecommitdiffstats
path: root/document/src/tests/testcase.h
blob: 3e52b2c82b8751c231087197618b2041d7f236eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
/* $Id$*/

#pragma once

#include <cppunit/extensions/HelperMacros.h>

class Document_Test : public CppUnit::TestFixture {
  CPPUNIT_TEST_SUITE( Document_Test);
  CPPUNIT_TEST(testShit);
  CPPUNIT_TEST_SUITE_END();

protected:
  void testShit();
};