FLOOR(63/119*100) gives 52% ...
As PHPUnit runs the test, it displays a marker on the screen to indicate its progress.
This means that by the end of the first line of points (one point for each test) phpunit completed 63 tests out of 119 general tests, which is 52% of the test run. There are 63 dots in this first line, indicating that all 63 of these tests were executed and passed without any failures, omissions, ignoring, etc. The correctness / failure of tests is shown by different colors / symbols than . such as red F for failed test
After each display line completed PHPUnit shows the number of completed tests, the total number of all tests and% completed.
The second line has 56 points, showing the results for tests 64 to 119, after which 100% completion. Since this is not a complete line of points, but the start of all tests is really completed, it again does not display numbers; but will show detailed results for any errors or failures that occurred before returning to the command prompt
source share