return file.isFile() && file.canRead() && file.getName().endsWith(".java");
}
private void convertAndVerify(final File input, final File expected) throws IOException
{
final ASTCompilationUnit ast = JavaParser.process(input);
if (ast == null)
{
Assert.fail("Failed to parse " + input);
}
if (!expected.exists())