File tree Expand file tree Collapse file tree 4 files changed +9
-95
lines changed
integration-tests/main/src/test/java/io/quarkus/it/main
test-framework/junit5/src/main/java/io/quarkus/test/junit Expand file tree Collapse file tree 4 files changed +9
-95
lines changed Original file line number Diff line number Diff line change 120120 <parentFirstArtifact >org.objenesis:objenesis</parentFirstArtifact >
121121 <parentFirstArtifact >net.bytebuddy:byte-buddy</parentFirstArtifact >
122122 <parentFirstArtifact >net.bytebuddy:byte-buddy-agent</parentFirstArtifact >
123+ <parentFirstArtifact >org.junit.jupiter:junit-jupiter-api</parentFirstArtifact >
124+ <parentFirstArtifact >org.junit.jupiter:junit-jupiter</parentFirstArtifact >
125+ <parentFirstArtifact >org.junit.jupiter:junit-jupiter-engine</parentFirstArtifact >
126+ <parentFirstArtifact >org.junit.jupiter:junit-jupiter-params</parentFirstArtifact >
127+ <parentFirstArtifact >org.junit.platform:junit-platform-commons</parentFirstArtifact >
128+ <parentFirstArtifact >org.junit.platform:junit-platform-engine</parentFirstArtifact >
123129 </parentFirstArtifacts >
124130 <excludedArtifacts >
125131 <excludedArtifact >io.smallrye:smallrye-config</excludedArtifact >
Original file line number Diff line number Diff line change 88
99import javax .inject .Inject ;
1010
11+ import org .junit .jupiter .api .DynamicTest ;
1112import org .junit .jupiter .api .Test ;
1213import org .junit .jupiter .api .TestFactory ;
1314
1415import io .quarkus .it .arc .UnusedBean ;
15- import io .quarkus .test .junit .QuarkusDynamicTest ;
1616import io .quarkus .test .junit .QuarkusTest ;
1717
1818@ QuarkusTest
@@ -29,10 +29,10 @@ public void testInjection() {
2929 @ TestFactory
3030 public List <?> dynamicTests () {
3131 return Arrays .asList (
32- QuarkusDynamicTest .dynamicTest ("test 1" , () -> {
32+ DynamicTest .dynamicTest ("test 1" , () -> {
3333 assertNotNull (bean );
3434 }),
35- QuarkusDynamicTest .dynamicTest ("test 2" , () -> {
35+ DynamicTest .dynamicTest ("test 2" , () -> {
3636 assertEquals (1 , 1 );
3737 }));
3838 }
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments