beautifier.setStrict(true);
}
public void testSample0() throws Exception {
PostProcessor postProcessor = new JavaImportBeautifier();
File file = new File("src/test/resources/Sample0.java");
FileHandle fh = new FileHandleImpl(null, file);
CompatibilityHelper.setBuffer(fh, new CharacterSequence(loadTestFile("Sample01.java_input")));
postProcessor.beforeWriteAndClose(fh);
assertNotNull(CompatibilityHelper.getBuffer(fh));
}