diff options
| author | Greg Roach <fisharebest@gmail.com> | 2017-04-17 09:27:06 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2017-04-17 09:27:06 +0100 |
| commit | 45b77366ea1e76ec1f812e6a15d12fb393f0343e (patch) | |
| tree | 29cd4dd2dbfbda37c0ed228c7d64063a986dcc78 /phpunit.xml.dist | |
| parent | 77ced4090adda51be871983c5595133dd5b2ad3e (diff) | |
| download | webtrees-45b77366ea1e76ec1f812e6a15d12fb393f0343e.tar.gz webtrees-45b77366ea1e76ec1f812e6a15d12fb393f0343e.tar.bz2 webtrees-45b77366ea1e76ec1f812e6a15d12fb393f0343e.zip | |
Rename phpunit.xml to phpunit.xml.dist
Diffstat (limited to 'phpunit.xml.dist')
| -rw-r--r-- | phpunit.xml.dist | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/phpunit.xml.dist b/phpunit.xml.dist new file mode 100644 index 0000000000..7d62952c16 --- /dev/null +++ b/phpunit.xml.dist @@ -0,0 +1,25 @@ +<phpunit + xmlns="" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd" + backupGlobals="false" + backupStaticAttributes="false" + bootstrap="vendor/autoload.php" + colors="true" + convertErrorsToExceptions="true" + convertNoticesToExceptions="true" + convertWarningsToExceptions="true" + processIsolation="false" + stopOnFailure="false" +> + <testsuites> + <testsuite name="Application Test Suite"> + <directory>tests</directory> + </testsuite> + </testsuites> + <filter> + <whitelist> + <directory suffix=".php">app</directory> + </whitelist> + </filter> +</phpunit> |
