This might be a dumb question, but I can't get it to work.
I am using PHPUnit for testing. I currently have two classes in the Tests.php file:
class XTest extends PHPUnit_Framework_TestCase {...}
class YTest extends PHPUnit_Framework_TestCase {...}
However, I cannot run both classes. I run the following command on Windows:
php "C:\Program Files (x86)\PHP\phpunit" Tests
And he is trying to run a test class called "Tests". Instead, I would like it to run "XTest" and "YTest" and everything in the file. How can I easily run multiple test classes?
Tower source
share