1
0
standardize_test_format/test/test_standardize.py
Jon Michael Aanes 413fbba677
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
from_camel_case
2025-02-27 15:34:56 +01:00

51 lines
1.1 KiB
Python

from standardize_test_format import standardize_java_text
INPUT_1 = """
@Test
@DisplayName("Invocations fail with callers without required permissions")
public void selectInvocationWithoutPermission() { }
"""
OUTPUT_1 = """
@Test
@DisplayName("Invocations fail with callers without required permissions")
public void invocationsFailWithCallersWithoutRequiredPermissions() { }
"""
INPUT_2 = """
/** Invocations fail with callers without required permissions. */
@Test
public void selectInvocationWithoutPermission() { }
"""
OUTPUT_2 = """
@Test
@DisplayName("Invocations fail with callers without required permissions")
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()