Created
November 24, 2011 07:27
-
-
Save clauswitt/1390828 to your computer and use it in GitHub Desktop.
A per package unit test configuration for FLOW3
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"?> | |
| <phpunit strict="true" | |
| bootstrap="UnitTestBootstrap.php" | |
| convertErrorsToExceptions="true" | |
| convertNoticesToExceptions="true" | |
| convertWarningsToExceptions="true"> | |
| <testsuites> | |
| <testsuite name="All tests"> | |
| <directory>../../Tests/Unit</directory> | |
| </testsuite> | |
| </testsuites> | |
| <filter> | |
| <whitelist addUncoveredFilesFromWhitelist="true"> | |
| <directory>../../Classes</directory> | |
| </whitelist> | |
| </filter> | |
| <logging> | |
| <log type="junit" target="../Reports/UnitTests.xml" logIncompleteSkipped="false"/> | |
| </logging> | |
| </phpunit> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment