EVOLUTION-MANAGER
Edit File: phpunit.xml.dist
<?xml version="1.0" encoding="UTF-8"?> <phpunit bootstrap="./tests/Bootstrap.php" colors="true" verbose="true" > <testsuites> <testsuite name="Mockery Test Suite"> <directory suffix="Test.php">./tests</directory> <directory phpVersion="7.0.0" phpVersionOperator=">=">./tests/PHP70</directory> <directory phpVersion="7.2.0" phpVersionOperator=">=">./tests/PHP72</directory> <exclude>./tests/PHP56</exclude> <exclude>./tests/Mockery/MockingVariadicArgumentsTest.php</exclude> </testsuite> <testsuite name="Mockery Test Suite PHP56"> <directory suffix="Test.php">./tests</directory> <directory suffix="Test.php">./tests/PHP56</directory> <exclude>./tests/PHP70</exclude> <exclude>./tests/PHP72</exclude> <exclude>./tests/Mockery/MockingVariadicArgumentsTest.php</exclude> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">./library/</directory> <exclude> <directory>./library/Mockery/Adapter/Phpunit/Legacy</directory> <file>./library/Mockery/Adapter/Phpunit/TestListener.php</file> <file>./library/Mockery/Adapter/Phpunit/MockeryPHPUnitIntegrationAssertPostConditionsForV8.php</file> <file>./library/Mockery/Adapter/Phpunit/MockeryTestCaseSetUpForV8.php</file> </exclude> </whitelist> </filter> </phpunit>