Interface ExpectDsl.Failing

Enclosing interface:
ExpectDsl

public static interface ExpectDsl.Failing
Fluent API for assertions after failed command execution. Provides methods to verify the exception type and precondition violations.

All assertion methods return this to allow method chaining:

 .fails()
     .throwing(IllegalStateException.class)
     .throwsSatisfying(ex -> assertThat(ex.getMessage()).contains("invalid"));