Skip to content

Commit

Permalink
Rename quarkus-junit5-vertx to quarkus-test-vertx and remove quarkus-…
Browse files Browse the repository at this point in the history
…junit5 dependency
  • Loading branch information
geoand committed Feb 23, 2022
1 parent 1c359c9 commit cf06953
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion bom/application/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2613,7 +2613,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5-vertx</artifactId>
<artifactId>quarkus-test-vertx</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public abstract class ReactiveTransactionalInterceptorBase {
private static final String JUNIT_TEST_ANN = "org.junit.jupiter.api.Test";
private static final String JUNIT_BEFORE_EACH_ANN = "org.junit.jupiter.api.BeforeEach";
private static final String JUNIT_AFTER_EACH_ANN = "org.junit.jupiter.api.AfterEach";
private static final String UNI_ASSERTER_CLASS = "io.quarkus.test.junit.vertx.UniAsserter";
private static final String UNI_ASSERTER_CLASS = "io.quarkus.test.vertx.UniAsserter";

@SuppressWarnings("unchecked")
@AroundInvoke
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/hibernate-reactive-panache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5-vertx</artifactId>
<artifactId>quarkus-test-vertx</artifactId>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
import io.quarkus.test.TestReactiveTransaction;
import io.quarkus.test.junit.DisabledOnNativeImage;
import io.quarkus.test.junit.QuarkusTest;
import io.quarkus.test.junit.vertx.RunOnVertxContext;
import io.quarkus.test.junit.vertx.UniAsserter;
import io.quarkus.test.vertx.RunOnVertxContext;
import io.quarkus.test.vertx.UniAsserter;
import io.restassured.RestAssured;
import io.restassured.http.ContentType;
import io.smallrye.mutiny.Uni;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import io.quarkus.hibernate.reactive.panache.Panache;
import io.quarkus.test.TestReactiveTransaction;
import io.quarkus.test.junit.QuarkusTest;
import io.quarkus.test.junit.vertx.UniAsserter;
import io.quarkus.test.vertx.UniAsserter;

@QuarkusTest
public class TestReactiveTransactionTest {
Expand Down

This file was deleted.

2 changes: 1 addition & 1 deletion test-framework/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<module>junit5</module>
<module>junit5-mockito</module>
<module>junit5-mockito-config</module>
<module>junit5-vertx</module>
<module>vertx</module>
<module>amazon-lambda</module>
<module>arquillian</module>
<module>devmode-test-utils</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
<version>999-SNAPSHOT</version>
</parent>

<artifactId>quarkus-junit5-vertx</artifactId>
<name>Quarkus - Test framework - JUnit 5 - Vert.x</name>
<artifactId>quarkus-test-vertx</artifactId>
<name>Quarkus - Test framework - Vert.x</name>

<dependencies>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-junit5</artifactId>
<artifactId>quarkus-test-common</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.test.junit.vertx;
package io.quarkus.test.vertx;

import java.util.function.Consumer;
import java.util.function.Function;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.test.junit.vertx;
package io.quarkus.test.vertx;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.test.junit.vertx;
package io.quarkus.test.vertx;

import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.quarkus.test.junit.vertx;
package io.quarkus.test.vertx;

import java.util.function.Consumer;
import java.util.function.Function;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
io.quarkus.test.vertx.RunOnVertxContextTestMethodInvoker

0 comments on commit cf06953

Please sign in to comment.