Uses of Interface
io.quarkus.test.vertx.UniAsserter
-
Uses of UniAsserter in io.quarkus.test.vertx
Subinterfaces of UniAsserter in io.quarkus.test.vertxModifier and TypeInterfaceDescription(package private) interfaceAUniAsserterthat exposes the internalUni.Classes in io.quarkus.test.vertx that implement UniAsserterModifier and TypeClassDescriptionfinal classclassA subclass can be used to wrap the injectedUniAsserterand customize the default behavior.Methods in io.quarkus.test.vertx that return UniAsserterModifier and TypeMethodDescription<T> UniAsserterDefaultUniAsserter.assertEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) <T> UniAsserterUniAsserter.assertEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) Assert that the value of theUniis equal to the expected value.<T> UniAsserterUniAsserterInterceptor.assertEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) <T> UniAsserterDefaultUniAsserter.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni, Class<? extends Throwable> c) <T> UniAsserterDefaultUniAsserter.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni, Consumer<Throwable> c) <T> UniAsserterUniAsserter.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni, Class<? extends Throwable> c) Used to determine whether theUnicontains the expected failure type.<T> UniAsserterUniAsserter.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni, Consumer<Throwable> c) Used to determine whether theUnicontains the expected failure.<T> UniAsserterUniAsserterInterceptor.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni, Class<? extends Throwable> c) <T> UniAsserterUniAsserterInterceptor.assertFailedWith(Supplier<io.smallrye.mutiny.Uni<T>> uni, Consumer<Throwable> c) DefaultUniAsserter.assertFalse(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) UniAsserter.assertFalse(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) Assert that the value of theUniisfalse.UniAsserterInterceptor.assertFalse(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) <T> UniAsserterDefaultUniAsserter.assertNotEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) <T> UniAsserterUniAsserter.assertNotEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) Assert that the value of theUniis not equal to the expected value.<T> UniAsserterUniAsserterInterceptor.assertNotEquals(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) <T> UniAsserterDefaultUniAsserter.assertNotNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) <T> UniAsserterUniAsserter.assertNotNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) Assert that the value of theUniis notnull.<T> UniAsserterUniAsserterInterceptor.assertNotNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) <T> UniAsserterDefaultUniAsserter.assertNotSame(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) <T> UniAsserterUniAsserter.assertNotSame(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) Assert that the value of theUniand the expected value do not refer to the same object.<T> UniAsserterUniAsserterInterceptor.assertNotSame(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) <T> UniAsserterDefaultUniAsserter.assertNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) <T> UniAsserterUniAsserter.assertNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) Assert that the value of theUniisnull.<T> UniAsserterUniAsserterInterceptor.assertNull(Supplier<io.smallrye.mutiny.Uni<T>> uni) <T> UniAsserterDefaultUniAsserter.assertSame(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) <T> UniAsserterUniAsserter.assertSame(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) Assert that the value of theUniand the expected value refer to the same object.<T> UniAsserterUniAsserterInterceptor.assertSame(Supplier<io.smallrye.mutiny.Uni<T>> uni, T t) <T> UniAsserterDefaultUniAsserter.assertThat(Supplier<io.smallrye.mutiny.Uni<T>> uni, Consumer<T> asserter) <T> UniAsserterUniAsserter.assertThat(Supplier<io.smallrye.mutiny.Uni<T>> uni, Consumer<T> asserter) Perform a custom assertion on the value of theUniin cases where no exception was thrown.<T> UniAsserterUniAsserterInterceptor.assertThat(Supplier<io.smallrye.mutiny.Uni<T>> uni, Consumer<T> asserter) DefaultUniAsserter.assertTrue(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) UniAsserter.assertTrue(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) Assert that the value of theUniistrue.UniAsserterInterceptor.assertTrue(Supplier<io.smallrye.mutiny.Uni<Boolean>> uni) protected UniAsserterRunOnVertxContextTestMethodInvoker.createUniAsserter()<T> UniAsserterExecute some arbitrary operation as part of the pipeline.<T> UniAsserterExecute some arbitrary operation as part of the pipeline.<T> UniAsserterDefaultUniAsserter.fail()UniAsserter.fail()Ensure that the whole pipeline always failsUniAsserterInterceptor.fail()<T> UniAsserterDefaultUniAsserter.surroundWith(Function<io.smallrye.mutiny.Uni<T>, io.smallrye.mutiny.Uni<T>> uni) <T> UniAsserterUniAsserter.surroundWith(Function<io.smallrye.mutiny.Uni<T>, io.smallrye.mutiny.Uni<T>> uni) <T> UniAsserterUniAsserterInterceptor.surroundWith(Function<io.smallrye.mutiny.Uni<T>, io.smallrye.mutiny.Uni<T>> uni) Constructors in io.quarkus.test.vertx with parameters of type UniAsserterModifierConstructorDescriptionRunTestMethodOnVertxBlockingContextHandler(Object testInstance, Method targetMethod, List<Object> methodArgs, UniAsserter uniAsserter) RunTestMethodOnVertxEventLoopContextHandler(Object testInstance, Method targetMethod, List<Object> methodArgs, UniAsserter uniAsserter, CompletableFuture<Object> future) UniAsserterInterceptor(UniAsserter asserter)