#### Summary This is a way to check that an object satisfies one of the given assertions requirements expressed as `Consumers` #### Example ```java assertThat("foo").satisfiesAnyOf(actual -> assertThat(actual).contains("foo"), actual -> assertThat(actual).isEmpty()); ```