}
@Test
public void testDoNotGenerateClassWhenActionScriptClassIsAlreadyThere() throws Exception {
setUp("exmlparser.config");
ExmlSourceFile exmlSourceFile = new ExmlSourceFile(getConfigClassRegistry(), getFile("/testPackage/TestAction.exml"));
File outputFile = exmlSourceFile.generateTargetClass();
Assert.assertNull("A target class must only be generated when there is no ActionScript source class of the same name as the EXML class.", outputFile);
}