Created
May 25, 2017 15:54
-
-
Save NandoKstroNet/34dc75f02e464365a24fa00b996b5819 to your computer and use it in GitHub Desktop.
Arquivo de configuração de nossa suite de testes com PHPUnit criada no post sobre Silex e Testes da Code Experts Learning
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
<?xml version="1.0" encoding="UTF-8"?> | |
<phpunit backupGlobals="false" | |
backupStaticAttributes="false" | |
bootstrap="./bootstrap.php" | |
cacheTokens="true" | |
colors="true" | |
convertErrorsToExceptions="true" | |
convertNoticesToExceptions="false" | |
convertWarningsToExceptions="true" | |
processIsolation="false" | |
stopOnFailure="false" | |
verbose="false"> | |
<testsuites> | |
<testsuite name="Silex Tests"> | |
<directory>./tests/</directory> | |
</testsuite> | |
</testsuites> | |
<filter> | |
<whitelist> | |
<directory>./src/</directory> | |
</whitelist> | |
</filter> | |
</phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment