Created
August 31, 2013 05:14
-
-
Save chanakasan/6396345 to your computer and use it in GitHub Desktop.
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"?> | |
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html --> | |
<phpunit bootstrap = "../../../../app/bootstrap.php.cache" | |
backupGlobals = "false" | |
backupStaticAttributes = "false" | |
colors = "true" | |
convertErrorsToExceptions = "true" | |
convertNoticesToExceptions = "true" | |
convertWarningsToExceptions = "true" | |
processIsolation = "false" | |
stopOnFailure = "false" | |
syntaxCheck = "false" | |
strict = "true" | |
verbose = "true" | |
> | |
<testsuites> | |
<testsuite name="My TestSuite"> | |
<directory>unit</directory> | |
<!--<directory>integration</directory>--> | |
<!--<directory>edge-to-edge</directory>--> | |
<!--<directory>end-to-end</directory>--> | |
</testsuite> | |
</testsuites> | |
<!-- | |
<php> | |
<server name="KERNEL_DIR" value="/path/to/your/app/" /> | |
</php> | |
--> | |
<filter> | |
<whitelist> | |
<directory suffix=".php">../../../src/Panda86/AppBundle</directory> | |
<exclude> | |
<directory>../../../src/*/*Bundle/Resources</directory> | |
<directory>../../../src/*/*Bundle/Tests</directory> | |
<directory>../../../src/*/Bundle/*Bundle/Resources</directory> | |
<directory>../../../src/*/Bundle/*Bundle/Tests</directory> | |
</exclude> | |
</whitelist> | |
</filter> | |
</phpunit> | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html --> | |
<phpunit bootstrap = "../../../../app/bootstrap.php.cache" | |
backupGlobals = "false" | |
backupStaticAttributes = "false" | |
colors = "true" | |
convertErrorsToExceptions = "true" | |
convertNoticesToExceptions = "true" | |
convertWarningsToExceptions = "true" | |
processIsolation = "false" | |
stopOnFailure = "false" | |
syntaxCheck = "false" | |
strict = "true" | |
verbose = "true" | |
> | |
<testsuites> | |
<testsuite name="My TestSuite"> | |
<directory>unit</directory> | |
<!--<directory>integration</directory>--> | |
<!--<directory>edge-to-edge</directory>--> | |
<!--<directory>end-to-end</directory>--> | |
</testsuite> | |
</testsuites> | |
<!-- | |
<php> | |
<server name="KERNEL_DIR" value="/path/to/your/app/" /> | |
</php> | |
--> | |
<filter> | |
<whitelist> | |
<directory suffix=".php">../../../src/Panda86/AppBundle</directory> | |
<exclude> | |
<directory>../../../src/*/*Bundle/Resources</directory> | |
<directory>../../../src/*/*Bundle/Tests</directory> | |
<directory>../../../src/*/Bundle/*Bundle/Resources</directory> | |
<directory>../../../src/*/Bundle/*Bundle/Tests</directory> | |
</exclude> | |
</whitelist> | |
</filter> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment