1
0

DisplayName parsing can now handle expressions v2
Some checks failed
Run Python tests (through Pytest) / Test (push) Successful in 23s
Verify Python project can be installed, loaded and have version checked / Test (push) Failing after 21s

This commit is contained in:
Jon Michael Aanes 2025-02-28 09:55:13 +01:00
parent 7c8523136a
commit ba387a0aa0
2 changed files with 20 additions and 2 deletions

View File

@ -81,8 +81,11 @@ def parse_display_name_to_description(text: str|None):
if text is None:
return ''
text = re.sub(r'"\s*\+\s*"', '', text).strip('"')
return text.strip()
text = text.strip()
text = re.sub(r'"\s*\+\s*"', '', text)
text = text.strip('"')
text = text.strip()
return text
def replace_test_pattern(match: re.Match, with_javadoc: bool, with_display_name: bool) -> str:

View File

@ -92,6 +92,18 @@ package test;
public void zkBinderContextImplPropagatesLotOfFieldsDirectlyFromTheUnderlyingZkBinderContext()
"""
INPUT_5C = """
package test;
@Test
@DisplayName(
"ZkBinderContextImpl propagates a lot of "
+ "fields directly from "
+ "the underlying ZkBinderContext"
)
public void zkBinderContextImplPropagatesLotOfFieldsDirectlyFromTheUnderlyingZkBinderContext()
"""
OUTPUT_5 = """
package test;
import org.junit.jupiter.api.DisplayName;
@ -119,3 +131,6 @@ def test_5():
def test_5b():
assert standardize_java_text(INPUT_5B.strip(),False,True) == OUTPUT_5.strip()
def test_5c():
assert standardize_java_text(INPUT_5C.strip(),False,True) == OUTPUT_5.strip()