51 lines
1.1 KiB
Python
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()
|
|
|