public static AbstractByteAssert<?> resultOf(CheckedByteSupplier whenStep) { return assertThat(result(whenStep)); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(byte)} */ default AbstractByteAssert<?> then(byte actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(byte)} */ default AbstractByteAssert<?> and(byte actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Byte)} */ default AbstractByteAssert<?> then(Byte actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(Byte)} */ default AbstractByteAssert<?> and(Byte actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractByteAssert<?> org.assertj.core.api.Assertions.assertThat(byte) * {@link org.assertj.core.api.Assertions#assertThat(byte)} */ default AbstractByteAssert<?> assertThat(byte actual) { return Assertions.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractByteAssert<?> org.assertj.core.api.Assertions.assertThat(java.lang.Byte) * {@link org.assertj.core.api.Assertions#assertThat(java.lang.Byte)} */ default AbstractByteAssert<?> assertThat(Byte actual) { return Assertions.assertThat(actual); }