summaryrefslogtreecommitdiffstats
path: root/document/src/tests/documentselecttest.h
diff options
context:
space:
mode:
Diffstat (limited to 'document/src/tests/documentselecttest.h')
-rw-r--r--document/src/tests/documentselecttest.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/document/src/tests/documentselecttest.h b/document/src/tests/documentselecttest.h
deleted file mode 100644
index e50dd984b65..00000000000
--- a/document/src/tests/documentselecttest.h
+++ /dev/null
@@ -1,34 +0,0 @@
-// 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 DocumentSelect_Test : public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE( DocumentSelect_Test);
- CPPUNIT_TEST(testEquals);
- CPPUNIT_TEST(testLt);
- CPPUNIT_TEST(testGt);
- CPPUNIT_TEST(testAnd);
- CPPUNIT_TEST(testOr);
- CPPUNIT_TEST(testNot);
- CPPUNIT_TEST(testConfig1);
- CPPUNIT_TEST(testConfig2);
- CPPUNIT_TEST_SUITE_END();
-
-public:
- void setUp();
-
- void tearDown();
-protected:
- void testEquals();
- void testLt();
- void testGt();
- void testAnd();
- void testOr();
- void testNot();
- void testConfig1();
- void testConfig2();
-};
-
-