Difference between revisions of "All Test Results"

From AgileApps Support Wiki
imported>Aeric
m (Text replace - 'Setup > Develop > ' to 'Designer > Logic > ')
 
imported>Aeric
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
<noinclude>'''Designer > Logic > Classes > [Run All Tests]'''</noinclude>
<noinclude>'''[[File:GearIcon.png]] > Customization > Developer Resources > Classes > [Run All Tests]'''</noinclude>


This page shows the results of running the tests defined in all classes.
This page shows the results of running the tests defined in all classes.
<noinclude>__TOC__</noinclude>
<noinclude>__TOC__</noinclude>
====Column Headings====
====Column Headings====
:* '''Class''' - The class for which tests were run.
{{:Test Results Contents}}
:* '''Total Tests''' - The total number of tests run on that class.
<noinclude>
:* '''Failed Tests''' - The number of tests that had an exception or a failed assertion.
:* '''Successful Tests''' - The number of successful assertions that were made while the tests ran.
:* '''Empty Tests''' - The number of tests that ran to completion without making an assertion.
:* '''Code Coverage''' - The percentage of runnable code in the class that was executed during the test.<br/> The value is a link. Click it to view a [[Code Coverage]] popup window that highlights the executed lines.<noinclude>
 
====Learn More====                             
====Learn More====                             
:* [[Unit Test Framework]]                             
:* [[Unit Test Framework]]                             
</noinclude>
</noinclude>

Latest revision as of 22:17, 9 August 2013

GearIcon.png > Customization > Developer Resources > Classes > [Run All Tests]

This page shows the results of running the tests defined in all classes.

Column Headings

  • Tested Class - The class that was tested.
  • Tests Run - The total number of test methods that were executed.
  • Test Failures - Tests that failed, either because an assertion failed or because an exception occurred.
  • Tests Succeeded - A count of the number of assertions that succeeded. If a single test method makes 2 assertions, and each succeeds, it counts as 2 successful tests.
  • Total Time (ms) - The total amount of time that was taken to execute the tests, in milliseconds.

Notepad.png

Note: Tests that run to completion without making any assertions are not counted.

Learn More