For below TestNG XML file, I am not specifying the thread-count explicitly. What is the default value of thread count for the below XML?
<suite name="TmpSuite" >
<test name="TmpTest" parallel="methods">
<classes>
<class name="test.failures.Child" />
</classes>
</test>
</suite>