public static AbstractLongAssert<?> resultOf(CheckedLongSupplier whenStep) { return assertThat(result(whenStep)); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(long)} */ default AbstractLongAssert<?> then(long actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(long)} */ default AbstractLongAssert<?> and(long actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Long)} */ default AbstractLongAssert<?> then(Long actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Long)} */ default AbstractLongAssert<?> and(Long actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
public static AbstractLongAssert<LongAssert> assertStatus(BounceService.BounceTaskStatus status, LongSupplier supplier) throws Exception { status.future().get(); ObjectMapper mapper = new ObjectMapper(); return new LongAssert(supplier.getAsLong()).as(mapper.writeValueAsString(status)); }
/** * Delegate call to public static org.assertj.core.api.AbstractLongAssert<?> org.assertj.core.api.Assertions.assertThat(java.lang.Long) * {@link org.assertj.core.api.Assertions#assertThat(java.lang.Long)} */ default AbstractLongAssert<?> assertThat(Long actual) { return Assertions.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractLongAssert<?> org.assertj.core.api.Assertions.assertThat(long) * {@link org.assertj.core.api.Assertions#assertThat(long)} */ default AbstractLongAssert<?> assertThat(long actual) { return Assertions.assertThat(actual); }