Get PHP project coverage in real time without ending the program running

46 Views Asked by At

I want to test the coverage of a php web application. I need to get the coverage in real time while the program is running, like nyc or jacoco. Instead of getting it when ending the program, or writing it in advance in the program. I read the documentation of php-code-coverage and it seems that it cannot be implemented. Are there any tools that can achieve it?

Let me repeat my needs: I want to obtain the coverage of a php web application in real time. For example, I manually complete the registration operation, and then obtain the current coverage (through the command line or other methods); then I manually complete the login operation, Get coverage again...

0

There are 0 best solutions below