i am running the scripts using selenium grid with TestNG. In testng we are seperating scripts with removing dependency.Format is like that:
<suite name="Suite" parallel="true">
<test name="Test" preserve-order="false">
<classes>
<class name="test.TestCase1"/>
<class name="test.TestCase2"/>
</classes>
</test>
<test name="Test" preserve-order="false">
<classes>
<class name="test.TestCase3"/>
<class name="test.TestCase4"/>
</classes>
</test>
</suite>
problem is that testng reports only about the last two testcases. Can any one help us how to get reports from all reports ???????. Also testcase1 will effect the testcase2.