public static AbstractFileAssert<?> resultOf(CheckedFileSupplier whenStep) { return assertThat(result(whenStep)); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(File)} */ default AbstractFileAssert<?> then(File actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
/** * Delegate call to {@link org.assertj.core.api.Assertions#assertThat(File)} */ default AbstractFileAssert<?> and(File actual) { fluentBdd().verification.recordThen(this); return DELEGATE.assertThat(actual); }
protected AbstractFileAssert<?> assertFile(String path) throws IOException { return Assertions.assertThat(newFile(path)).usingCharset(StandardCharsets.UTF_8); }
/** * Delegate call to public static org.assertj.core.api.AbstractFileAssert<?> org.assertj.core.api.Assertions.assertThat(java.io.File) * {@link org.assertj.core.api.Assertions#assertThat(java.io.File)} */ default AbstractFileAssert<?> assertThat(File actual) { return Assertions.assertThat(actual); }