reportFiles.length );
File reportFile = new File( sureFireReports, "TEST-com.adobe.example.TestCalculator.xml" );
AssertJUnit.assertTrue( "Report was not created!", reportFile.isFile() );
TestCaseReport report = new TestCaseReport( Xpp3DomBuilder.build( new FileReader( reportFile ) ) );
AssertJUnit.assertEquals( 1, report.getErrors() );
AssertJUnit.assertEquals( 1, report.getFailures() );
AssertJUnit.assertEquals( 3, report.getTests() );
File testClasses = new File( target, "test-classes" );
AssertJUnit.assertTrue( "test-classes folder not created!", testClasses.isDirectory() );
File mxml = new File( testClasses, "com_adobe_example_TestCalculator_Flexmojos_test.mxml" );