Last active
December 14, 2015 12:09
-
-
Save baldurrensch/5084376 to your computer and use it in GitHub Desktop.
This test listener insert profiling information for every unit test run.
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"?> | |
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html --> | |
<phpunit | |
backupGlobals = "false" | |
backupStaticAttributes = "false" | |
colors = "true" | |
convertErrorsToExceptions = "true" | |
convertNoticesToExceptions = "true" | |
convertWarningsToExceptions = "true" | |
processIsolation = "false" | |
stopOnFailure = "false" | |
syntaxCheck = "false" | |
bootstrap = "bootstrap.php.cache" | |
> | |
<listeners> | |
<listener class="BR\PHPUnitTestListeners\XHGuiTestListener" file="XHGuiTestListener.php"> | |
<arguments> | |
<string>hostName</string> | |
<string>dbName</string> | |
<string>dbUser</string> | |
<string>dbPassword</string> | |
<string>applicationName</string> | |
</arguments> | |
</listener> | |