I have a Zend Framework project, and want to using unit testing to test it.
In tests folder, I have the phpunit.xml as following;
phpunit.xml
I was having the same problem with the same setup. From what I understand, more recent versions of PHPUnit require at least one actual test to run properly. After creating a simple test, it worked.
myProject/tests/application/DemoTest.php
assertTrue(true); } }