I am new to phpunit. I have developed some test cases for my php code and I am able to run them.
Is it possible to run those test cases when the classes, for which test cases are generated, are used during actual software is running?
For example, when I run software and a class A's method myMethod() is called. I want test cases for that method to run, too.
I have searched a lot but have not found anything that says how to do it. So I wonder whether it is possible.