[Libreoffice-commits] core.git: drawinglayer/qa
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Thu Feb 14 08:07:47 UTC 2019
drawinglayer/qa/unit/border.cxx | 14 ++------------
1 file changed, 2 insertions(+), 12 deletions(-)
New commits:
commit f871e8f5b34aa43db7958cbed9edecf618c9afa0
Author: Miklos Vajna <vmiklos at collabora.com>
AuthorDate: Wed Feb 13 21:51:03 2019 +0100
Commit: Miklos Vajna <vmiklos at collabora.com>
CommitDate: Thu Feb 14 09:07:18 2019 +0100
CppunitTest_drawinglayer_border: use CPPUNIT_TEST_FIXTURE()
Change-Id: I73f00a0cc052173167a539be02a42c47da34dd98
Reviewed-on: https://gerrit.libreoffice.org/67793
Tested-by: Jenkins
Reviewed-by: Miklos Vajna <vmiklos at collabora.com>
diff --git a/drawinglayer/qa/unit/border.cxx b/drawinglayer/qa/unit/border.cxx
index 30d278a91560..56357415f37a 100644
--- a/drawinglayer/qa/unit/border.cxx
+++ b/drawinglayer/qa/unit/border.cxx
@@ -32,17 +32,9 @@ namespace
class DrawinglayerBorderTest : public test::BootstrapFixture
{
-public:
- void testDoubleDecompositionSolid();
- void testDoublePixelProcessing();
-
- CPPUNIT_TEST_SUITE(DrawinglayerBorderTest);
- CPPUNIT_TEST(testDoubleDecompositionSolid);
- CPPUNIT_TEST(testDoublePixelProcessing);
- CPPUNIT_TEST_SUITE_END();
};
-void DrawinglayerBorderTest::testDoubleDecompositionSolid()
+CPPUNIT_TEST_FIXTURE(DrawinglayerBorderTest, testDoubleDecompositionSolid)
{
// Create a border line primitive that's similar to the one from the bugdoc:
// 1.47 pixels is 0.03cm at 130% zoom and 96 DPI.
@@ -110,7 +102,7 @@ void DrawinglayerBorderTest::testDoubleDecompositionSolid()
CPPUNIT_ASSERT_DOUBLES_EQUAL(fLeftWidth, fLineWidthFromDecompose, basegfx::fTools::getSmallValue());
}
-void DrawinglayerBorderTest::testDoublePixelProcessing()
+CPPUNIT_TEST_FIXTURE(DrawinglayerBorderTest, testDoublePixelProcessing)
{
// Create a pixel processor.
ScopedVclPtrInstance<VirtualDevice> pDev;
@@ -212,8 +204,6 @@ void DrawinglayerBorderTest::testDoublePixelProcessing()
CPPUNIT_ASSERT_EQUAL(nExpectedNumPolyLineActions, nPolyLineActionCount);
}
-CPPUNIT_TEST_SUITE_REGISTRATION(DrawinglayerBorderTest);
-
}
CPPUNIT_PLUGIN_IMPLEMENT();
More information about the Libreoffice-commits
mailing list