<T> UniAsserter |
DefaultUniAsserter.assertEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
|
<T> UniAsserter |
UniAsserter.assertEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
Assert that the value of the Uni is equal to the expected value.
|
<T> UniAsserter |
UniAsserterInterceptor.assertEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
|
<T> UniAsserter |
DefaultUniAsserter.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni,
Class<? extends Throwable> c) |
|
<T> UniAsserter |
DefaultUniAsserter.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni,
Consumer<Throwable> c) |
|
<T> UniAsserter |
UniAsserter.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni,
Class<? extends Throwable> c) |
Used to determine whether the Uni contains the expected failure type.
|
<T> UniAsserter |
UniAsserter.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni,
Consumer<Throwable> c) |
Used to determine whether the Uni contains the expected failure.
|
<T> UniAsserter |
UniAsserterInterceptor.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni,
Class<? extends Throwable> c) |
|
<T> UniAsserter |
UniAsserterInterceptor.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni,
Consumer<Throwable> c) |
|
UniAsserter |
DefaultUniAsserter.assertFalse(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) |
|
UniAsserter |
UniAsserter.assertFalse(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) |
Assert that the value of the Uni is false.
|
UniAsserter |
UniAsserterInterceptor.assertFalse(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) |
|
<T> UniAsserter |
DefaultUniAsserter.assertNotEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
|
<T> UniAsserter |
UniAsserter.assertNotEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
Assert that the value of the Uni is not equal to the expected value.
|
<T> UniAsserter |
UniAsserterInterceptor.assertNotEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
|
<T> UniAsserter |
DefaultUniAsserter.assertNotNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) |
|
<T> UniAsserter |
UniAsserter.assertNotNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) |
Assert that the value of the Uni is not null.
|
<T> UniAsserter |
UniAsserterInterceptor.assertNotNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) |
|
<T> UniAsserter |
DefaultUniAsserter.assertNotSame(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
|
<T> UniAsserter |
UniAsserter.assertNotSame(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
Assert that the value of the Uni and the expected value do not refer to the same object.
|
<T> UniAsserter |
UniAsserterInterceptor.assertNotSame(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
|
<T> UniAsserter |
DefaultUniAsserter.assertNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) |
|
<T> UniAsserter |
UniAsserter.assertNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) |
Assert that the value of the Uni is null.
|
<T> UniAsserter |
UniAsserterInterceptor.assertNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) |
|
<T> UniAsserter |
DefaultUniAsserter.assertSame(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
|
<T> UniAsserter |
UniAsserter.assertSame(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
Assert that the value of the Uni and the expected value refer to the same object.
|
<T> UniAsserter |
UniAsserterInterceptor.assertSame(Supplier<io.smallrye.mutiny.Uni<T>> uni,
T t) |
|
<T> UniAsserter |
DefaultUniAsserter.assertThat(Supplier<io.smallrye.mutiny.Uni<T>> uni,
Consumer<T> asserter) |
|
<T> UniAsserter |
UniAsserter.assertThat(Supplier<io.smallrye.mutiny.Uni<T>> uni,
Consumer<T> asserter) |
Perform a custom assertion on the value of the Uni in cases where no exception was thrown.
|
<T> UniAsserter |
UniAsserterInterceptor.assertThat(Supplier<io.smallrye.mutiny.Uni<T>> uni,
Consumer<T> asserter) |
|
UniAsserter |
DefaultUniAsserter.assertTrue(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) |
|
UniAsserter |
UniAsserter.assertTrue(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) |
Assert that the value of the Uni is true.
|
UniAsserter |
UniAsserterInterceptor.assertTrue(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) |
|
protected UniAsserter |
RunOnVertxContextTestMethodInvoker.createUniAsserter() |
|
UniAsserter |
DefaultUniAsserter.execute(Runnable c) |
|
<T> UniAsserter |
DefaultUniAsserter.execute(Supplier<io.smallrye.mutiny.Uni<T>> uni) |
|
UniAsserter |
UniAsserter.execute(Runnable c) |
Execute some arbitrary operation as part of the pipeline.
|
<T> UniAsserter |
UniAsserter.execute(Supplier<io.smallrye.mutiny.Uni<T>> uni) |
Execute some arbitrary operation as part of the pipeline.
|
UniAsserter |
UniAsserterInterceptor.execute(Runnable c) |
|
<T> UniAsserter |
UniAsserterInterceptor.execute(Supplier<io.smallrye.mutiny.Uni<T>> uni) |
|
UniAsserter |
DefaultUniAsserter.fail() |
|
UniAsserter |
UniAsserter.fail() |
Ensure that the whole pipeline always fails
|
UniAsserter |
UniAsserterInterceptor.fail() |
|
<T> UniAsserter |
DefaultUniAsserter.surroundWith(Function<io.smallrye.mutiny.Uni<T>,io.smallrye.mutiny.Uni<T>> uni) |
|
<T> UniAsserter |
UniAsserter.surroundWith(Function<io.smallrye.mutiny.Uni<T>,io.smallrye.mutiny.Uni<T>> uni) |
|
<T> UniAsserter |
UniAsserterInterceptor.surroundWith(Function<io.smallrye.mutiny.Uni<T>,io.smallrye.mutiny.Uni<T>> uni) |
|