basic/qa/cppunit/test_compiler_checks.cxx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-)
New commits: commit 15ee592a791acd921ed5356f374f18f660e5fc4f Author: Ilmari Lauhakangas <[email protected]> AuthorDate: Tue Sep 23 13:30:14 2025 +0300 Commit: Ilmari Lauhakangas <[email protected]> CommitDate: Tue Sep 23 15:25:30 2025 +0200 tdf#168520 basic: rename testTdf149157* and testTdf149402* tests to testTdf149157_continuation_in_comment_after_new_line* and testTdf149402_continuation_in_comment_ending_with_whitespace* to make it easier to understand what they are testing. Change-Id: I6be5883d6cb837ecf2d3208ea1b7c1dabaaec070 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191397 Reviewed-by: Ilmari Lauhakangas <[email protected]> Tested-by: Jenkins diff --git a/basic/qa/cppunit/test_compiler_checks.cxx b/basic/qa/cppunit/test_compiler_checks.cxx index 6aa3536e2441..2180a8adb1da 100644 --- a/basic/qa/cppunit/test_compiler_checks.cxx +++ b/basic/qa/cppunit/test_compiler_checks.cxx @@ -33,7 +33,7 @@ CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testDoubleArgument) CPPUNIT_ASSERT_EQUAL(ERRCODE_BASIC_VAR_DEFINED, aMacro.getError().GetCode()); } -CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157) +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157_continuation_in_comment_after_new_line) { MacroSnippet aMacro(u"Function extentComment() As Integer " " ' _ " @@ -45,7 +45,8 @@ CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157) CPPUNIT_ASSERT(!aMacro.HasError()); } -CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157_compatible) +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, + testTdf149157_continuation_in_comment_after_new_line_compatible) { MacroSnippet aMacro(u"Option Compatible " "Function extentComment() As Integer " @@ -59,7 +60,7 @@ CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157_compatible) CPPUNIT_ASSERT(!aMacro.HasError()); } -CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157_vba) +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157_continuation_in_comment_after_new_line_vba) { MacroSnippet aMacro(u"Option VBASupport 1 " "Function extentComment() As Integer " @@ -73,7 +74,8 @@ CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149157_vba) CPPUNIT_ASSERT(!aMacro.HasError()); } -CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149402) +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, + testTdf149402_continuation_in_comment_ending_with_whitespace) { MacroSnippet aMacro(u"Function extentComment() As Integer " " ' _ " @@ -86,7 +88,8 @@ CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149402) CPPUNIT_ASSERT(!aMacro.HasError()); } -CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149402_compatible) +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, + testTdf149402_continuation_in_comment_ending_with_whitespace_compatible) { MacroSnippet aMacro(u"Option Compatible " "Function extentComment() As Integer " @@ -100,7 +103,8 @@ CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149402_compatible) CPPUNIT_ASSERT(!aMacro.HasError()); } -CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, testTdf149402_vba) +CPPUNIT_TEST_FIXTURE(CppUnit::TestFixture, + testTdf149402_continuation_in_comment_ending_with_whitespace_vba) { MacroSnippet aMacro(u"Option VBASupport 1 " "Function extentComment() As Integer "
