1
0
standardize_test_format/test/test_standardize.py

68 lines
1.6 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(
"""
INPUT_4 = """
/**
* Concat two produces a new array with the two input arrays joined together, with no separators.
*/
@Test
public void concatTwo()
"""
OUTPUT_4 = """
@Test
@DisplayName("Concat two produces a new array with the two input arrays joined together, with no separators")
public void concatTwoProducesANewArrayWithTheTwoInputArraysJoinedTogetherWithNoSeparators()
"""
def test_1():
assert standardize_java_text(INPUT_1.strip(),False,True) == OUTPUT_1.strip()
def test_2():
assert standardize_java_text(INPUT_2.strip(),False,True) == OUTPUT_2.strip()
def test_3():
assert standardize_java_text(INPUT_3.strip(),False,True) == OUTPUT_3.strip()
def test_4():
assert standardize_java_text(INPUT_4.strip(),False,True) == OUTPUT_4.strip()