summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorJaskaran <jvsg1303@gmail.com>2016-02-19 00:03:22 +0530
committerNoel Grandin <noelgrandin@gmail.com>2016-02-19 06:26:04 +0000
commit9fe9f487a25a15558b77a8afc359e844922f1e83 (patch)
tree49dfb2e9f9dd96227901300f8f0ccefb1707a2fc /basegfx
parent1fccc616d205b7d7011d66d4e4c719b62876eec5 (diff)
tdf#97703 Removed a few redundant calls to setUp and tearDown
Calls to CppUnit::TextFixture::setUp and CppUnit::TextFixture::tearDown have been removed. I hope that saves a few milliseconds of build time :) Change-Id: I611db2f5c5673ab86bf8f92beb4f6e8a70443b34 Reviewed-on: https://gerrit.libreoffice.org/22496 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/test/basegfx3d.cxx40
-rw-r--r--basegfx/test/basegfxtools.cxx5
-rw-r--r--basegfx/test/genericclipper.cxx2
3 files changed, 0 insertions, 47 deletions
diff --git a/basegfx/test/basegfx3d.cxx b/basegfx/test/basegfx3d.cxx
index 61f781539f7f..951553e8d64d 100644
--- a/basegfx/test/basegfx3d.cxx
+++ b/basegfx/test/basegfx3d.cxx
@@ -28,14 +28,6 @@ namespace basegfx3d
class b3dhommatrix : public CppUnit::TestFixture
{
public:
- // initialise your test code values here.
- void setUp() override
- {
- }
-
- void tearDown() override
- {
- }
// insert your test code here.
// this is only demonstration code
@@ -56,14 +48,6 @@ public:
class b3dpoint : public CppUnit::TestFixture
{
public:
- // initialise your test code values here.
- void setUp() override
- {
- }
-
- void tearDown() override
- {
- }
// insert your test code here.
// this is only demonstration code
@@ -84,14 +68,6 @@ public:
class b3drange : public CppUnit::TestFixture
{
public:
- // initialise your test code values here.
- void setUp() override
- {
- }
-
- void tearDown() override
- {
- }
// insert your test code here.
void EmptyMethod()
@@ -110,14 +86,6 @@ public:
class b3dtuple : public CppUnit::TestFixture
{
public:
- // initialise your test code values here.
- void setUp() override
- {
- }
-
- void tearDown() override
- {
- }
// insert your test code here.
// this is only demonstration code
@@ -138,14 +106,6 @@ public:
class b3dvector : public CppUnit::TestFixture
{
public:
- // initialise your test code values here.
- void setUp() override
- {
- }
-
- void tearDown() override
- {
- }
// insert your test code here.
void EmptyMethod()
diff --git a/basegfx/test/basegfxtools.cxx b/basegfx/test/basegfxtools.cxx
index 0577c7bf2b47..7d27fa50eb44 100644
--- a/basegfx/test/basegfxtools.cxx
+++ b/basegfx/test/basegfxtools.cxx
@@ -48,11 +48,6 @@ public:
maKeyStops(getTestVector())
{}
- void setUp() override
- {}
-
- void tearDown() override
- {}
void test()
{
diff --git a/basegfx/test/genericclipper.cxx b/basegfx/test/genericclipper.cxx
index 4a7020e37f44..dde7afa4ad1d 100644
--- a/basegfx/test/genericclipper.cxx
+++ b/basegfx/test/genericclipper.cxx
@@ -63,8 +63,6 @@ public:
B2DRange(0,90,20,150));
}
- void tearDown() override
- {}
void validate(const char* pName,
const char* pValidSvgD,