Skip to content

Instantly share code, notes, and snippets.

@samsonasik
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save samsonasik/299defe1e70c39e300f3 to your computer and use it in GitHub Desktop.
Save samsonasik/299defe1e70c39e300f3 to your computer and use it in GitHub Desktop.
phpunit issue
<phpunit bootstrap="Bootstrap.php" colors="true">
<testsuite name="MyTest" >
<directory>./MyModuleTest</directory>
</testsuite>
<filter>
<whitelist>
<directory>./../../../../module/MyModule/src</directory>
<file>./../../../../module/MyModule/Module.php</file>
</whitelist>
<blacklist>
<directory>./../../../../vendor</directory>
<directory>./../../../../module/OtherModuleDependency</directory>
<directory>./../../../../module/OtherModuleDependency1</directory>
<directory>./../../../../module/OtherModuleDependency2</directory>
</blacklist>
</filter>
<logging>
<log type="coverage-html" target="./../../../../data/test-html-report/mymodule/" charset="UTF-8" yui="true" />
</logging>
</phpunit>
@samsonasik
Copy link
Author

it fixed in phpunit 4.7.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment