You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This may just be user error, but I'm not seeing a difference in the junit reports generated when xcpretty_naming is true vs when it is false. Looking at the code, it looks like this is the expected behavior when the testData is in a .xcresult file. Anyway, not sure if the bug is in the code, the documentation, or just good old-fashioned user error.
expected output:
<testsuites name='Target.xctest' tests='8' failures='0'>
<testsuite name = 'Target.TestClass1' tests='4' failures='0'>
<testcase classname='Target.TestClass1' name ='test1' time='.001'/>
<testcase classname='Target.TestClass1' name ='test2' time='.001'/>
<testcase classname='Target.TestClass1' name ='test3' time='.001'/>
<testcase classname='Target.TestClass1' name ='test4' time='.001'/>
</testsuite>
<testsuite name = 'Target.TestClass2' tests='4' failures='0'>
<testcase classname='Target.TestClass2' name ='test1' time='.001'/>
<testcase classname='Target.TestClass2' name ='test2' time='.001'/>
<testcase classname='Target.TestClass2' name ='test3' time='.001'/>
<testcase classname='Target.TestClass2' name ='test4' time='.001'/>
</testsuite>
</testsuites>
actual output:
<testsuites tests='8' failures='0'>
<testsuite name = 'Target' tests='8' failures='0' time='.008>
<testcase classname='TestClass1' name ='test1()' time='.001'>
</testcase>
<testcase classname='TestClass1' name ='test2()' time='.001'>
</testcase>
<testcase classname='TestClass1' name ='test3()' time='.001'>
</testcase>
<testcase classname='TestClass1' name ='test4()' time='.001'>
</testcase>
<testcase classname='TestClass2' name ='test1()' time='.001'>
</testcase>
<testcase classname='TestClass2' name ='test2()' time='.001'>
</testcase>
<testcase classname='TestClass2' name ='test3()' time='.001'>
</testcase>
<testcase classname='TestClass2' name ='test4()' time='.001'>
</testcase>
</testsuite>
</testsuites>
The text was updated successfully, but these errors were encountered:
This may just be user error, but I'm not seeing a difference in the junit reports generated when xcpretty_naming is true vs when it is false. Looking at the code, it looks like this is the expected behavior when the testData is in a .xcresult file. Anyway, not sure if the bug is in the code, the documentation, or just good old-fashioned user error.
expected output:
actual output:
The text was updated successfully, but these errors were encountered: