/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(AssertDelegateTarget)} */ default <T extends AssertDelegateTarget> T then(T assertion) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(assertion); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(AssertDelegateTarget)} */ default <T extends AssertDelegateTarget> T and(T assertion) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(assertion); }
public static <T extends AssertDelegateTarget> T returnsT(T assertion) { return null; }
public static <T extends AssertDelegateTarget> T returnsT2(T assertion) { return null; }
/** * Delegate call to public static <T> T org.assertj.core.api.Assertions.assertThat(T) * {@link org.assertj.core.api.Assertions#assertThat(org.assertj.core.api.AssertDelegateTarget)} */ default <T extends AssertDelegateTarget> T assertThat(T assertion) { return Assertions.assertThat(assertion); }