Created
October 8, 2012 12:07
-
-
Save DragonBe/3852180 to your computer and use it in GitHub Desktop.
Setting up a clean phpunit configuration for Zend Framework 2
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit bootstrap="bootstrap.php" colors="true"> | |
<testsuites> | |
<testsuite name="zf2demo"> | |
<directory>./</directory> | |
</testsuite> | |
</testsuites> | |
<filter> | |
<whitelist> | |
<!-- uncomment if you want to test the Zend Framework 2 library --> | |
<directory suffix=".php">../vendor/zendframework/zendframework</directory> | |
</whitelist> | |
</filter> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment