from_camel_case
This commit is contained in:
parent
3eed64b272
commit
413fbba677
|
@ -43,8 +43,7 @@ def to_camel_case(description: str) -> str:
|
||||||
return ''.join(words)
|
return ''.join(words)
|
||||||
|
|
||||||
def from_camel_case(name: str) -> str:
|
def from_camel_case(name: str) -> str:
|
||||||
# TODO
|
return re.sub(r'(^|[A-Z])[a-z]*', lambda x: ' '+x.group(0).capitalize(), name).strip()
|
||||||
return name
|
|
||||||
|
|
||||||
def replace_test_pattern(match: re.Match) -> str:
|
def replace_test_pattern(match: re.Match) -> str:
|
||||||
comment = (match.group('comment') or '').strip()
|
comment = (match.group('comment') or '').strip()
|
||||||
|
|
|
@ -26,10 +26,25 @@ OUTPUT_2 = """
|
||||||
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
|
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
INPUT_3 = """
|
||||||
|
@Test
|
||||||
|
public void helloWorldTest(
|
||||||
|
"""
|
||||||
|
|
||||||
|
OUTPUT_3 = """
|
||||||
|
@Test
|
||||||
|
@DisplayName("Hello World Test")
|
||||||
|
public void helloWorldTest(
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def test_1():
|
def test_1():
|
||||||
assert standardize_java_text(INPUT_1.strip()) == OUTPUT_1.strip()
|
assert standardize_java_text(INPUT_1.strip()) == OUTPUT_1.strip()
|
||||||
|
|
||||||
def test_2():
|
def test_2():
|
||||||
assert standardize_java_text(INPUT_2.strip()) == OUTPUT_2.strip()
|
assert standardize_java_text(INPUT_2.strip()) == OUTPUT_2.strip()
|
||||||
|
|
||||||
|
def test_3():
|
||||||
|
assert standardize_java_text(INPUT_3.strip()) == OUTPUT_3.strip()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user