/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(byte[])} */ default AbstractByteArrayAssert<?> then(byte[] actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(byte[])} */ default AbstractByteArrayAssert<?> and(byte[] actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to public static org.assertj.core.api.AbstractByteArrayAssert<?> org.assertj.core.api.Assertions.assertThat(byte[]) * {@link org.assertj.core.api.Assertions#assertThat(byte[])} */ default AbstractByteArrayAssert<?> assertThat(byte[] actual) { return Assertions.assertThat(actual); }