From f871e8f5b34aa43db7958cbed9edecf618c9afa0 Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Wed, 13 Feb 2019 21:51:03 +0100 Subject: CppunitTest_drawinglayer_border: use CPPUNIT_TEST_FIXTURE() Change-Id: I73f00a0cc052173167a539be02a42c47da34dd98 Reviewed-on: https://gerrit.libreoffice.org/67793 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- drawinglayer/qa/unit/border.cxx | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) (limited to 'drawinglayer/qa') 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 pDev; @@ -212,8 +204,6 @@ void DrawinglayerBorderTest::testDoublePixelProcessing() CPPUNIT_ASSERT_EQUAL(nExpectedNumPolyLineActions, nPolyLineActionCount); } -CPPUNIT_TEST_SUITE_REGISTRATION(DrawinglayerBorderTest); - } CPPUNIT_PLUGIN_IMPLEMENT(); -- cgit