* Check for imports is done as an extra step
* @throws Exception
*/
public void validateExactSourceFiles(File file1, File file2) throws Exception
{
JBossSourceComparator sc = new JBossSourceComparator(file1, file2);
assertTrue("Source Files Match:", sc.validate());
sc.validateImports();
}