Removed parameterized test names

This commit is contained in:
Risto Lahtela 2021-03-16 11:29:55 +02:00
parent ebffd886fe
commit 1c8fa4c18e

View File

@ -47,7 +47,7 @@ class URIPathTest {
assertEquals(expected, result);
}
@ParameterizedTest(name = "URIPath {0} gets part {1}: {2}")
@ParameterizedTest
@CsvSource({
"/", "0", " ",
"/example/target", "0", "example",
@ -101,7 +101,7 @@ class URIPathTest {
assertEquals(expected, result);
}
@ParameterizedTest(name = "URIPath {0} removes parts before part {1}: {2}")
@ParameterizedTest
@CsvSource({
"/example/target", "1", "/target",
"/example/target/", "2", "/",