TestNG - 如果未在 testng xml 中指定,线程数的默认值是多少?
TestNG - What is the default value of thread-count, if not specified in testng xml?
对于下面的 TestNG XML 文件,我没有明确指定线程数。以下 XML 的线程数默认值是多少?
<suite name="TmpSuite" >
<test name="TmpTest" parallel="methods">
<classes>
<class name="test.failures.Child" />
</classes>
</test>
</suite>
默认情况下,线程数的值为5。
你可以通过在testng文件中输入suite
属性对应的文本thread-count
来检查它,然后你可以点击Control + Space
来获得线程的自动建议-count,您将能够看到线程数的默认值。
请查看随附的屏幕截图以供参考。
对于下面的 TestNG XML 文件,我没有明确指定线程数。以下 XML 的线程数默认值是多少?
<suite name="TmpSuite" >
<test name="TmpTest" parallel="methods">
<classes>
<class name="test.failures.Child" />
</classes>
</test>
</suite>
默认情况下,线程数的值为5。
你可以通过在testng文件中输入suite
属性对应的文本thread-count
来检查它,然后你可以点击Control + Space
来获得线程的自动建议-count,您将能够看到线程数的默认值。
请查看随附的屏幕截图以供参考。