Each point represents a successfully completed test. Other output characters include “I,” “S,” “F,” and “E.”
An 'I' is created when the test includes a string
$this->markTestIncomplete('Your reason for being incomplete string');
An 'S' is created when the test includes a string
$this->markTestSkipped('Your reason for skipping string');
An "E" is created when phpunit detects an error during the execution of the test, and an "F" is created when the statement is executed in the running test.
jake_feyereisen
source share