Skip to main content

This documentation is for an older version of this product. See the latest version of this content.Opens in a new tab

Example: Viewing the Report in the Unit Test Portal

The portal organizes the test results into a series of reports. Each test report organizes test results into a series of hyperlinked pages. Follow the links to find increasingly specific information.

The first page provides a summary for all test suites. In this case, all test suites passed.

UnitTest Report Home with test suites listed in a table with columns like ID, Status, Duration, Machine name, and namespace

Click the id number in ID column for the report that you wish to view.

The second page displays results by each test suite. In this example, mytests is the test suite and it passed .

Unit test Index page with suites listed in table with columns like status, error description, and duration

Click mytests.

The third page displays results by each test case. In this example, the single test case,MyPackage.Tests, passed.

Unit test test suite page with test cases listed in table with columns like status, error description, and duration

Click MyPackage.Tests

The fourth page shows the results broken out by test method. Here the single test method, TestAdd, passed.

unit test page with table listing each test method. Columns include status, error description, and duration

Click TestAdd.

The final page displays results for each AssertX macro used in a test method. In this example, AssertEquals and AssertNotEquals both passed.

Unit test page with macros listed in table that has columns like Action, Status, and Description

FeedbackOpens in a new tab