| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
|
| 3 |
<phpunit backupGlobals="false" |
| 4 |
backupStaticAttributes="false" |
| 5 |
colors="true" |
| 6 |
convertErrorsToExceptions="true" |
| 7 |
convertNoticesToExceptions="true" |
| 8 |
convertWarningsToExceptions="true" |
| 9 |
processIsolation="false" |
| 10 |
stopOnFailure="false" |
| 11 |
syntaxCheck="false" |
| 12 |
bootstrap="tests/bootstrap.php" |
| 13 |
> |
| 14 |
<php> |
| 15 |
<const name="GIT_BINARY" value="/usr/bin/git"/> |
| 16 |
<const name="TEST_REPO_PATH" value="false"/> |
| 17 |
</php> |
| 18 |
<testsuites> |
| 19 |
<testsuite name="TEQneers Git Streamwrapper Test Suite"> |
| 20 |
<directory>./tests/TQ/</directory> |
| 21 |
</testsuite> |
| 22 |
</testsuites> |
| 23 |
|
| 24 |
<filter> |
| 25 |
<whitelist> |
| 26 |
<directory>./src/TQ/</directory> |
| 27 |
</whitelist> |
| 28 |
</filter> |
| 29 |
</phpunit> |
| 30 |
|