tdf#97703 Removed empty setUp/tearDown methods
Change-Id: Ia62de30ae94bdae87cd5109c44eab40af4d020e5 Reviewed-on: https://gerrit.libreoffice.org/22985 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
parent
68b5875647
commit
b38f58a3f9
@ -132,10 +132,6 @@ public:
|
|||||||
"31-24 33-22 34-20 35-18 36-16 37-15 39-12 40-11z";
|
"31-24 33-22 34-20 35-18 36-16 37-15 39-12 40-11z";
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void impex()
|
void impex()
|
||||||
{
|
{
|
||||||
B2DPolyPolygon aPoly;
|
B2DPolyPolygon aPoly;
|
||||||
@ -369,10 +365,6 @@ public:
|
|||||||
maPerspective.set(2,2, 9.0);
|
maPerspective.set(2,2, 9.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void equal()
|
void equal()
|
||||||
{
|
{
|
||||||
B2DHomMatrix aIdentity;
|
B2DHomMatrix aIdentity;
|
||||||
|
@ -169,10 +169,6 @@ public:
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
B2DPolyPolygon normalizePoly( const B2DPolyPolygon& rPoly )
|
B2DPolyPolygon normalizePoly( const B2DPolyPolygon& rPoly )
|
||||||
{
|
{
|
||||||
B2DPolyPolygon aRes;
|
B2DPolyPolygon aRes;
|
||||||
|
@ -86,9 +86,6 @@ public:
|
|||||||
aSubtract.subtractRange(aEast);
|
aSubtract.subtractRange(aEast);
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{}
|
|
||||||
|
|
||||||
void verifyPoly(const char* sName, const char* sSvg, const tools::B2DClipState& toTest)
|
void verifyPoly(const char* sName, const char* sSvg, const tools::B2DClipState& toTest)
|
||||||
{
|
{
|
||||||
#if OSL_DEBUG_LEVEL > 2
|
#if OSL_DEBUG_LEVEL > 2
|
||||||
|
@ -66,7 +66,6 @@ namespace {
|
|||||||
class Test: public CppUnit::TestFixture {
|
class Test: public CppUnit::TestFixture {
|
||||||
public:
|
public:
|
||||||
virtual void setUp() override;
|
virtual void setUp() override;
|
||||||
virtual void tearDown() override;
|
|
||||||
|
|
||||||
void testKeyFetch();
|
void testKeyFetch();
|
||||||
void testKeySet();
|
void testKeySet();
|
||||||
@ -212,10 +211,6 @@ void Test::setUp()
|
|||||||
comphelper::getProcessComponentContext() );
|
comphelper::getProcessComponentContext() );
|
||||||
}
|
}
|
||||||
|
|
||||||
void Test::tearDown()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void Test::testKeyFetch()
|
void Test::testKeyFetch()
|
||||||
{
|
{
|
||||||
OUString s;
|
OUString s;
|
||||||
|
@ -20,12 +20,6 @@ using namespace svgi;
|
|||||||
class TestParser : public CppUnit::TestFixture
|
class TestParser : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void setUp()
|
|
||||||
{}
|
|
||||||
|
|
||||||
void tearDown()
|
|
||||||
{}
|
|
||||||
|
|
||||||
void testParseColor()
|
void testParseColor()
|
||||||
{
|
{
|
||||||
ARGBColor aTmp;
|
ARGBColor aTmp;
|
||||||
|
@ -323,14 +323,6 @@ namespace rtl_OStringBuffer
|
|||||||
class remove : public CppUnit::TestFixture
|
class remove : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void remove_001()
|
void remove_001()
|
||||||
{
|
{
|
||||||
::rtl::OStringBuffer sb(
|
::rtl::OStringBuffer sb(
|
||||||
|
@ -1086,10 +1086,6 @@ namespace osl_FileBase
|
|||||||
nError = FileBase::getTempDirURL( aUStr );
|
nError = FileBase::getTempDirURL( aUStr );
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// test code.
|
// test code.
|
||||||
void getTempDirURL_001()
|
void getTempDirURL_001()
|
||||||
{
|
{
|
||||||
|
@ -44,10 +44,6 @@ public:
|
|||||||
rtl_locale::setDefaultLocale();
|
rtl_locale::setDefaultLocale();
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void getDefault_001()
|
void getDefault_001()
|
||||||
{
|
{
|
||||||
rtl_Locale* pData = rtl_locale_getDefault();
|
rtl_Locale* pData = rtl_locale_getDefault();
|
||||||
@ -107,10 +103,6 @@ public:
|
|||||||
rtl_locale::setDefaultLocale();
|
rtl_locale::setDefaultLocale();
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// insert your test code here.
|
// insert your test code here.
|
||||||
void getLanguage_001()
|
void getLanguage_001()
|
||||||
{
|
{
|
||||||
@ -145,10 +137,6 @@ public:
|
|||||||
rtl_locale::setDefaultLocale();
|
rtl_locale::setDefaultLocale();
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// insert your test code here.
|
// insert your test code here.
|
||||||
void getCountry_001()
|
void getCountry_001()
|
||||||
{
|
{
|
||||||
@ -183,10 +171,6 @@ public:
|
|||||||
rtl_locale::setDefaultLocale();
|
rtl_locale::setDefaultLocale();
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// insert your test code here.
|
// insert your test code here.
|
||||||
void getVariant_001()
|
void getVariant_001()
|
||||||
{
|
{
|
||||||
@ -221,10 +205,6 @@ public:
|
|||||||
rtl_locale::setDefaultLocale();
|
rtl_locale::setDefaultLocale();
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// insert your test code here.
|
// insert your test code here.
|
||||||
void hashCode_001()
|
void hashCode_001()
|
||||||
{
|
{
|
||||||
@ -259,10 +239,6 @@ public:
|
|||||||
rtl_locale::setDefaultLocale();
|
rtl_locale::setDefaultLocale();
|
||||||
}
|
}
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// insert your test code here.
|
// insert your test code here.
|
||||||
void equals_001()
|
void equals_001()
|
||||||
{
|
{
|
||||||
|
@ -71,15 +71,6 @@ namespace rtl_Process
|
|||||||
class getAppCommandArg : public CppUnit::TestFixture
|
class getAppCommandArg : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// initialise your test code values here.
|
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void getAppCommandArg_001()
|
void getAppCommandArg_001()
|
||||||
{
|
{
|
||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
@ -196,14 +187,6 @@ void printUuidtoBuffer( sal_uInt8 *pNode, sal_Char * pBuffer )
|
|||||||
class getGlobalProcessId : public CppUnit::TestFixture
|
class getGlobalProcessId : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// initialise your test code values here.
|
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
//gets a 16-byte fixed size identifier which is guaranteed not to change during the current process.
|
//gets a 16-byte fixed size identifier which is guaranteed not to change during the current process.
|
||||||
void getGlobalProcessId_001()
|
void getGlobalProcessId_001()
|
||||||
{
|
{
|
||||||
|
@ -36,15 +36,6 @@ namespace rtl_random
|
|||||||
class createPool : public CppUnit::TestFixture
|
class createPool : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// initialise your test code values here.
|
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// insert your test code here.
|
// insert your test code here.
|
||||||
// this is only demonstration code
|
// this is only demonstration code
|
||||||
void createPool_001()
|
void createPool_001()
|
||||||
@ -71,15 +62,6 @@ public:
|
|||||||
class destroyPool : public CppUnit::TestFixture
|
class destroyPool : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// initialise your test code values here.
|
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// insert your test code here.
|
// insert your test code here.
|
||||||
void destroyPool_000()
|
void destroyPool_000()
|
||||||
{
|
{
|
||||||
@ -109,15 +91,6 @@ public:
|
|||||||
class addBytes : public CppUnit::TestFixture
|
class addBytes : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// initialise your test code values here.
|
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// insert your test code here.
|
// insert your test code here.
|
||||||
// this is only demonstration code
|
// this is only demonstration code
|
||||||
void addBytes_000()
|
void addBytes_000()
|
||||||
@ -242,15 +215,6 @@ public:
|
|||||||
class getBytes : public CppUnit::TestFixture
|
class getBytes : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// initialise your test code values here.
|
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// insert your test code here.
|
// insert your test code here.
|
||||||
void getBytes_000()
|
void getBytes_000()
|
||||||
{
|
{
|
||||||
|
@ -33,10 +33,6 @@ namespace
|
|||||||
class testBestMime : public CppUnit::TestFixture
|
class testBestMime : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void check(rtl_TextEncoding eIn, rtl_TextEncoding eOut)
|
void check(rtl_TextEncoding eIn, rtl_TextEncoding eOut)
|
||||||
{
|
{
|
||||||
const sal_Char *pCharSet = rtl_getBestMimeCharsetFromTextEncoding(eIn);
|
const sal_Char *pCharSet = rtl_getBestMimeCharsetFromTextEncoding(eIn);
|
||||||
@ -485,10 +481,6 @@ namespace
|
|||||||
class testBestUnix : public CppUnit::TestFixture
|
class testBestUnix : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void check(rtl_TextEncoding eIn, rtl_TextEncoding eOut)
|
void check(rtl_TextEncoding eIn, rtl_TextEncoding eOut)
|
||||||
{
|
{
|
||||||
const sal_Char *pCharSet = rtl_getBestUnixCharsetFromTextEncoding(eIn);
|
const sal_Char *pCharSet = rtl_getBestUnixCharsetFromTextEncoding(eIn);
|
||||||
@ -1017,10 +1009,6 @@ namespace
|
|||||||
class testBestWindows : public CppUnit::TestFixture
|
class testBestWindows : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void check(rtl_TextEncoding nIn, rtl_TextEncoding nOut)
|
void check(rtl_TextEncoding nIn, rtl_TextEncoding nOut)
|
||||||
{
|
{
|
||||||
const sal_uInt8 nCharSet = rtl_getBestWindowsCharsetFromTextEncoding(nIn);
|
const sal_uInt8 nCharSet = rtl_getBestWindowsCharsetFromTextEncoding(nIn);
|
||||||
@ -1580,15 +1568,6 @@ namespace
|
|||||||
class testTextEncodingInfo: public CppUnit::TestFixture
|
class testTextEncodingInfo: public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// initialise your test code values here.
|
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
// not implemented encoding test
|
// not implemented encoding test
|
||||||
void testTextEncodingInfo_001()
|
void testTextEncodingInfo_001()
|
||||||
{
|
{
|
||||||
|
@ -44,15 +44,6 @@ namespace rtl_Uuid
|
|||||||
class createUuid : public CppUnit::TestFixture
|
class createUuid : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// initialise your test code values here.
|
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
#define TEST_UUID 20
|
#define TEST_UUID 20
|
||||||
void createUuid_001()
|
void createUuid_001()
|
||||||
{
|
{
|
||||||
@ -115,15 +106,6 @@ public:
|
|||||||
class createNamedUuid : public CppUnit::TestFixture
|
class createNamedUuid : public CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
// initialise your test code values here.
|
|
||||||
void setUp() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void tearDown() override
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void createNamedUuid_001()
|
void createNamedUuid_001()
|
||||||
{
|
{
|
||||||
sal_uInt8 NameSpace_DNS[16] = RTL_UUID_NAMESPACE_DNS;
|
sal_uInt8 NameSpace_DNS[16] = RTL_UUID_NAMESPACE_DNS;
|
||||||
|
@ -48,8 +48,6 @@ class ConverterTest
|
|||||||
: public ::CppUnit::TestFixture
|
: public ::CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual void setUp() override;
|
|
||||||
virtual void tearDown() override;
|
|
||||||
|
|
||||||
void testDuration();
|
void testDuration();
|
||||||
void testDateTime();
|
void testDateTime();
|
||||||
@ -78,14 +76,6 @@ public:
|
|||||||
private:
|
private:
|
||||||
};
|
};
|
||||||
|
|
||||||
void ConverterTest::setUp()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void ConverterTest::tearDown()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
static void doTest(util::Duration const & rid, char const*const pis,
|
static void doTest(util::Duration const & rid, char const*const pis,
|
||||||
char const*const i_pos = nullptr)
|
char const*const i_pos = nullptr)
|
||||||
{
|
{
|
||||||
|
@ -22,9 +22,6 @@ class ControllerItemTest
|
|||||||
: public ::CppUnit::TestFixture
|
: public ::CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual void setUp() override {}
|
|
||||||
virtual void tearDown() override {}
|
|
||||||
|
|
||||||
void test();
|
void test();
|
||||||
|
|
||||||
CPPUNIT_TEST_SUITE(ControllerItemTest);
|
CPPUNIT_TEST_SUITE(ControllerItemTest);
|
||||||
|
@ -44,9 +44,6 @@ class MetadatableTest
|
|||||||
: public ::CppUnit::TestFixture
|
: public ::CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual void setUp() override;
|
|
||||||
virtual void tearDown() override;
|
|
||||||
|
|
||||||
void test();
|
void test();
|
||||||
|
|
||||||
CPPUNIT_TEST_SUITE(MetadatableTest);
|
CPPUNIT_TEST_SUITE(MetadatableTest);
|
||||||
@ -56,15 +53,6 @@ public:
|
|||||||
private:
|
private:
|
||||||
};
|
};
|
||||||
|
|
||||||
void MetadatableTest::setUp()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void MetadatableTest::tearDown()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
class MockMetadatable
|
class MockMetadatable
|
||||||
: public ::sfx2::Metadatable
|
: public ::sfx2::Metadatable
|
||||||
{
|
{
|
||||||
|
@ -43,8 +43,6 @@ private:
|
|||||||
LPSTREAM pStream;
|
LPSTREAM pStream;
|
||||||
public:
|
public:
|
||||||
Test();
|
Test();
|
||||||
void setUp() {}
|
|
||||||
void tearDown() {}
|
|
||||||
void test_file_directory();
|
void test_file_directory();
|
||||||
void test_file_hasContentCaseInSensitive();
|
void test_file_hasContentCaseInSensitive();
|
||||||
void test_file_getContent();
|
void test_file_getContent();
|
||||||
|
@ -28,9 +28,6 @@ class WriterfilterMiscTest
|
|||||||
: public ::CppUnit::TestFixture
|
: public ::CppUnit::TestFixture
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
virtual void setUp() override;
|
|
||||||
virtual void tearDown() override;
|
|
||||||
|
|
||||||
void testTwipConversions();
|
void testTwipConversions();
|
||||||
void testFieldParameters();
|
void testFieldParameters();
|
||||||
|
|
||||||
@ -40,14 +37,6 @@ public:
|
|||||||
CPPUNIT_TEST_SUITE_END();
|
CPPUNIT_TEST_SUITE_END();
|
||||||
};
|
};
|
||||||
|
|
||||||
void WriterfilterMiscTest::setUp()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriterfilterMiscTest::tearDown()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
void WriterfilterMiscTest::testTwipConversions()
|
void WriterfilterMiscTest::testTwipConversions()
|
||||||
{
|
{
|
||||||
using writerfilter::dmapper::ConversionHelper::convertTwipToMM100;
|
using writerfilter::dmapper::ConversionHelper::convertTwipToMM100;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user