public class Surefire224WellFormedXmlFailuresIT
extends SurefireIntegrationTestCase
{
public void testWellFormedXmlFailures()
{
OutputValidator outputValidator = unpack( "/surefire-224-wellFormedXmlFailures" ).executeTest();
outputValidator.assertTestSuiteResults( 4, 0, 4, 0 );
ReportTestSuite suite =
HelperAssertions.extractReports( ( new File[]{ outputValidator.getBaseDir() } ) ).get( 0 );
List<ReportTestCase> testCases = suite.getTestCases();
assertEquals( "Wrong number of test case objects", 4, testCases.size() );
ReportTestCase testQuote = null, testLower = null, testGreater = null, testU0000 = null;
for ( ReportTestCase current : testCases )
{