In the main area of the
PHPUnit test view, the results for each of the
tests run will be displayed.
Tests that have passed successfully will be displayed with a green
tick icon. 
Tests that have failed will be displayed with a blue X icon. 
Functions with tests that have not been implemented (i.e. functions
that tests have not been created for), will have passed but will have
a note indicating that they have not been implemented.
The number at the top of
the view indicates how many tests have been run. Tests may not be run
if an 'exit' command is given or if a fatal error is encountered.
Click the 'Show failures
only' icon
to only view failed results.
Select a failed result to
view it in the Failure Trace view. Click the Filter Stack Trace icon
to display only functions relevant to your application and not PHPUnit
functions.
Double-click on a failed
result to be taken to the test function in the test file.
To correct the failed result, either fix the test function or the original
function on which it was run.
The Code Coverage display
indicates how much of the code in both the original file and the test
file was run:
The
percentage in the Covered Lines column displays
the percentage of lines executed out of the total number of executable
lines.
The
number of 'visited' lines are the number of executable code lines.
The
number of 'significant' lines are the number of significant (i.e. executable)
lines.
The
number of 'total' lines is the total number of lines in the file.