DisplayName parsing can now handle expressions v2
This commit is contained in:
parent
7c8523136a
commit
ba387a0aa0
|
@ -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:
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue
Block a user