How show stacktrace in testng-plugin of Jenkins? -


i have jenkins job have script writes xml report. xml equal example:

     <testng-results>             <reporter-output>            </reporter-output>            <suite name="suite0" failures="0" tests="0">                <test name="testcase1">                   <class name="testcase1.class">                      <test-method name="test1" started-at="2013-10-07t16:20:51z" finished-at="2013-10-07t16:20:53z" duration-ms="2754" status="pass">                     </test-method>                  </class>              </test>             <test name="test2">                <class name="test2.class">                    <test-method name="testcase2" started-at="2013-10-07t16:21:14z" finished-at="2013-10-07t16:21:19z" duration-ms="4163" status="fail">                 <short-stacktrace>description of error lot of information....     </short-stacktrace>     </test-method>     </class>     </test> </suite> </testng-results> 

this xml readed testngplugin , shows me tests duration, nÂș of fails , passed. failed tests doesn't show me stacktrace...¿there way show description of error user in jenkins? tag must use?


Comments

Popular posts from this blog

c++ - CryptStringToBinary API behavior -

c++ - Correct method for redrawing a layered window -

java.util.scanner - How to read and add only numbers to array from a text file -