1
0

from_camel_case
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 22s

This commit is contained in:
Jon Michael Aanes 2025-02-27 15:34:56 +01:00
parent 3eed64b272
commit 413fbba677
2 changed files with 16 additions and 2 deletions

View File

@ -43,8 +43,7 @@ def to_camel_case(description: str) -> str:
return ''.join(words)
def from_camel_case(name: str) -> str:
# TODO
return name
return re.sub(r'(^|[A-Z])[a-z]*', lambda x: ' '+x.group(0).capitalize(), name).strip()
def replace_test_pattern(match: re.Match) -> str:
comment = (match.group('comment') or '').strip()

View File

@ -26,10 +26,25 @@ OUTPUT_2 = """
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
"""
INPUT_3 = """
@Test
public void helloWorldTest(
"""
OUTPUT_3 = """
@Test
@DisplayName("Hello World Test")
public void helloWorldTest(
"""
def test_1():
assert standardize_java_text(INPUT_1.strip()) == OUTPUT_1.strip()
def test_2():
assert standardize_java_text(INPUT_2.strip()) == OUTPUT_2.strip()
def test_3():
assert standardize_java_text(INPUT_3.strip()) == OUTPUT_3.strip()