Last active
August 29, 2015 14:21
-
-
Save samsonasik/299defe1e70c39e300f3 to your computer and use it in GitHub Desktop.
phpunit issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
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
hm.., just realized, it actually not fix at all, "some" untested files still not shown in coverage...