PHPunit cannot find my tests, but it finds my XML configuration. This is the config:
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Symply Test Suite">
<directory>src/Symply/EventManager/Tests</directory>
</testsuite>
</testsuites>
</phpunit>
And this is the directory structure:
PHPunit simply says that when the script runs, "no tests are executed." I do not know why this does not work, as I have specified the directory in the XML catalog tags.
user1683333
source
share