summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeir Storli <geirst@verizonmedia.com>2019-02-26 11:33:33 +0000
committerGeir Storli <geirst@verizonmedia.com>2019-02-26 11:33:33 +0000
commit75ae8d06f3c0af1fa787305ec3a794cd14a2b9e0 (patch)
treed5d5212c369b87d7f48f2dc7f51983f1377affe4
parent7dc730c188e4f8290f12693f3aac966cf582b281 (diff)
Remove unused file.
-rw-r--r--document/src/tests/documentupdatetestcase.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/document/src/tests/documentupdatetestcase.h b/document/src/tests/documentupdatetestcase.h
deleted file mode 100644
index ebe5f1b144a..00000000000
--- a/document/src/tests/documentupdatetestcase.h
+++ /dev/null
@@ -1,50 +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 DocumentUpdate_Test : public CppUnit::TestFixture {
- CPPUNIT_TEST_SUITE(DocumentUpdate_Test);
- CPPUNIT_TEST(testUpdateApplySingleValue);
- CPPUNIT_TEST(testUpdateArray);
- CPPUNIT_TEST(testUpdateWeightedSet);
- CPPUNIT_TEST(testReadSerializedFile);
- CPPUNIT_TEST(testGenerateSerializedFile);
- CPPUNIT_TEST(testSetBadFieldTypes);
- CPPUNIT_TEST(testUpdateApplyNoParams);
- CPPUNIT_TEST(testUpdateApplyNoArrayValues);
- CPPUNIT_TEST(testUpdateArrayEmptyParamValue);
- CPPUNIT_TEST(testUpdateWeightedSetEmptyParamValue);
- CPPUNIT_TEST(testUpdateArrayWrongSubtype);
- CPPUNIT_TEST(testUpdateWeightedSetWrongSubtype);
- CPPUNIT_TEST(testMapValueUpdate);
- CPPUNIT_TEST(testThatDocumentUpdateFlagsIsWorking);
- CPPUNIT_TEST(testThatCreateIfNonExistentFlagIsSerialized50AndDeserialized50);
- CPPUNIT_TEST(testThatCreateIfNonExistentFlagIsSerializedAndDeserialized);
- CPPUNIT_TEST_SUITE_END();
-
-public:
- void setUp();
- void tearDown();
-
-protected:
- void testUpdateApplySingleValue();
- void testUpdateArray();
- void testUpdateWeightedSet();
- void testReadSerializedFile();
- void testGenerateSerializedFile();
- void testSetBadFieldTypes();
- void testUpdateApplyNoParams();
- void testUpdateApplyNoArrayValues();
- void testUpdateArrayEmptyParamValue();
- void testUpdateWeightedSetEmptyParamValue();
- void testUpdateArrayWrongSubtype();
- void testUpdateWeightedSetWrongSubtype();
- void testMapValueUpdate();
- void testThatDocumentUpdateFlagsIsWorking();
- void testThatCreateIfNonExistentFlagIsSerialized50AndDeserialized50();
- void testThatCreateIfNonExistentFlagIsSerializedAndDeserialized();
-};
-