drawinglayer/qa/unit/vclmetafileprocessor2d.cxx | 4 ++-- drawinglayer/qa/unit/vclpixelprocessor2d.cxx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-)
New commits: commit deb4622af08f14c0dcd791b9e2390ef886d4a2a8 Author: Daniel <[email protected]> AuthorDate: Tue Dec 2 21:05:30 2025 -0800 Commit: Ilmari Lauhakangas <[email protected]> CommitDate: Wed Dec 3 10:54:22 2025 +0100 tdf#168520 Give testTdf136957 and testTdf139000 human-readable names Change the test name in drawinglayer\qa\unitclmetafileprocessor2d.cxx from testTdf136957 to the more descriptive tdf136957_draw_impress_dotted_line. Change the test name in drawinglayer\qa\unitclpixelprocessor2d.cxx from testTdf139000 to the more descriptive tdf139000_draw_clipped_gradient. Change-Id: Ibef5d2819fc8de0c124b8fc79c17923c3a5ed8aa Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194936 Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <[email protected]> diff --git a/drawinglayer/qa/unit/vclmetafileprocessor2d.cxx b/drawinglayer/qa/unit/vclmetafileprocessor2d.cxx index 7845e1623693..4e5e5752656e 100644 --- a/drawinglayer/qa/unit/vclmetafileprocessor2d.cxx +++ b/drawinglayer/qa/unit/vclmetafileprocessor2d.cxx @@ -71,7 +71,7 @@ public: } // Test drawing a dotted line in Impress presentation mode. - void testTdf136957() + void tdf136957_draw_impress_dotted_line() { // Impress presentation mode first draws the slide to a metafile. GDIMetaFile metafile; @@ -145,7 +145,7 @@ public: } CPPUNIT_TEST_SUITE(VclMetaFileProcessor2DTest); - CPPUNIT_TEST(testTdf136957); + CPPUNIT_TEST(tdf136957_draw_impress_dotted_line); CPPUNIT_TEST_SUITE_END(); }; diff --git a/drawinglayer/qa/unit/vclpixelprocessor2d.cxx b/drawinglayer/qa/unit/vclpixelprocessor2d.cxx index 7798a1fac4e8..5bc11c8df279 100644 --- a/drawinglayer/qa/unit/vclpixelprocessor2d.cxx +++ b/drawinglayer/qa/unit/vclpixelprocessor2d.cxx @@ -47,7 +47,7 @@ public: } // Test that drawing only a part of a gradient draws the proper part of it. - void testTdf139000() + void tdf139000_draw_clipped_gradient() { ScopedVclPtr<VirtualDevice> device = VclPtr<VirtualDevice>::Create(DeviceFormat::WITHOUT_ALPHA); @@ -128,7 +128,7 @@ public: } CPPUNIT_TEST_SUITE(VclPixelProcessor2DTest); - CPPUNIT_TEST(testTdf139000); + CPPUNIT_TEST(tdf139000_draw_clipped_gradient); CPPUNIT_TEST_SUITE_END(); };
