Fix CsvSource "identation?"
This commit is contained in:
parent
47c962738b
commit
0a7a741d34
2 changed files with 5 additions and 5 deletions
|
@ -25,10 +25,10 @@ class MiscellaneousTest {
|
|||
@ParameterizedTest
|
||||
@DisplayName("padNumbers")
|
||||
@CsvSource({
|
||||
"5, 3, 005",
|
||||
"15, 2, 15",
|
||||
"666, 2, 666",
|
||||
"5918, 6, 005918",
|
||||
"5, 3, 005",
|
||||
"15, 2, 15",
|
||||
"666, 2, 666",
|
||||
"5918, 6, 005918",
|
||||
"5819853, 10, 0005819853"
|
||||
})
|
||||
void testPadNumbers(int number, int length, String expected) {
|
||||
|
|
|
@ -32,7 +32,7 @@ class PlaceholderEngineTest {
|
|||
@CsvSource({
|
||||
"Test placeholder %test%, Test placeholder TEST",
|
||||
"%invalid% must be invalid, %invalid% must be invalid",
|
||||
"This %status%!, This works!"
|
||||
"This %status%!, This works!",
|
||||
})
|
||||
void testProcess(String text, String expected) {
|
||||
logger.testCall("testProcess", text, expected);
|
||||
|
|
Loading…
Reference in a new issue