-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove Vert.x Axle and Vert.x RX managed instances
These features have been deprecated in February 2020. It also simplifies the Vert.x 4 migration, as it reduces the API surface.
- Loading branch information
1 parent
d49e1af
commit d245d19
Showing
51 changed files
with
134 additions
and
1,046 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,12 +10,9 @@ | |
import java.util.List; | ||
import java.util.Map; | ||
|
||
import org.junit.jupiter.api.AfterAll; | ||
import org.junit.jupiter.api.BeforeAll; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import io.smallrye.mutiny.Multi; | ||
import io.vertx.axle.core.Vertx; | ||
|
||
class MailTest { | ||
|
||
|
@@ -24,17 +21,6 @@ class MailTest { | |
private static final String DESCRIPTION = "my lorem ipsum"; | ||
private static final String TO_ADDRESS = "[email protected]"; | ||
private static final String TEXT_PLAIN = "text/plain"; | ||
private static Vertx vertx; | ||
|
||
@BeforeAll | ||
static void init() { | ||
vertx = Vertx.vertx(); | ||
} | ||
|
||
@AfterAll | ||
static void closing() { | ||
vertx.close().toCompletableFuture().join(); | ||
} | ||
|
||
@Test | ||
void testSimpleTextEmail() { | ||
|
Oops, something went wrong.