We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d00a35c commit bdce87fCopy full SHA for bdce87f
src/test/java/guru/springframework/sfgpetclinic/model/OwnerTest.java
@@ -1,6 +1,7 @@
1
package guru.springframework.sfgpetclinic.model;
2
3
import guru.springframework.sfgpetclinic.ModelTests;
4
+import org.junit.jupiter.api.DisplayName;
5
import org.junit.jupiter.api.Tag;
6
import org.junit.jupiter.api.Test;
7
import org.junit.jupiter.params.ParameterizedTest;
@@ -26,7 +27,8 @@ void dependentAssertions(){
26
27
);
28
}
29
- @ParameterizedTest
30
+ @DisplayName("value source test - ")
31
+ @ParameterizedTest(name = "{displayName} [{index}] {argumentsWithNames}")
32
@ValueSource(strings = {"one", "two", "three"})
33
void testValueSource(String val){
34
System.out.println(val);
0 commit comments