Skip to content

Instantly share code, notes, and snippets.

@DragonBe
Created October 8, 2012 12:07
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 DragonBe/3852180 to your computer and use it in GitHub Desktop.
Save DragonBe/3852180 to your computer and use it in GitHub Desktop.
Setting up a clean phpunit configuration for Zend Framework 2
<?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