Interface PublisherLastStep

    • Method Detail

      • expectError

        StepVerifier expectError()
        Declare an expectation that onError will be the next signal.
        Returns:
        An object which allows to verify all expectations.
      • expectErrorMatches

        StepVerifier expectErrorMatches​(java.util.function.Predicate<java.lang.Throwable> errorPredicate)
        Declare an expectation that onError will be the next signal and evaluate it with errorPredicate.
        Parameters:
        errorPredicate - Will be invoked when onError is called and will raise a AssertionError if the predicate returns false.
        Returns:
        An object which allows to verify all expectations.
      • expectError

        StepVerifier expectError​(java.lang.Class<? extends java.lang.Throwable> errorClass)
        Declare an expectation that onError will be the next signal and it will be of type errorClass.
        Parameters:
        errorClass - The type of error which is expected.
        Returns:
        An object which allows to verify all expectations.
      • expectErrorConsumed

        StepVerifier expectErrorConsumed​(java.util.function.Consumer<java.lang.Throwable> errorConsumer)
        Declare an expectation that onError will be the next signal and evaluate it with errorConsumer.
        Parameters:
        errorConsumer - Will be invoked when onError is called.
        Returns:
        An object which allows to verify all expectations.