Mercurial > hg > isophonics-drupal-site
comparison vendor/mikey179/vfsStream/phpunit.xml.dist @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:4c8ae668cc8c |
---|---|
1 <?xml version="1.0" encoding="UTF-8"?> | |
2 <phpunit backupGlobals="false" | |
3 backupStaticAttributes="false" | |
4 bootstrap="vendor/autoload.php" | |
5 colors="true" | |
6 convertErrorsToExceptions="true" | |
7 convertNoticesToExceptions="true" | |
8 convertWarningsToExceptions="true" | |
9 forceCoversAnnotation="false" | |
10 mapTestClassNameToCoveredClassName="false" | |
11 printerClass="PHPUnit_TextUI_ResultPrinter" | |
12 processIsolation="false" | |
13 stopOnError="false" | |
14 stopOnFailure="false" | |
15 stopOnIncomplete="false" | |
16 stopOnSkipped="false" | |
17 verbose="true"> | |
18 <testsuites> | |
19 <testsuite> | |
20 <directory suffix=".phpt">./src/test/phpt</directory> | |
21 <directory suffix="TestCase.php">./src/test/php</directory> | |
22 </testsuite> | |
23 </testsuites> | |
24 | |
25 <filter> | |
26 <whitelist> | |
27 <directory>src/main/php</directory> | |
28 </whitelist> | |
29 </filter> | |
30 | |
31 <logging> | |
32 <log type="coverage-html" target="docs/coverage" charset="UTF-8" | |
33 yui="true" highlight="false" | |
34 lowUpperBound="35" highLowerBound="70"/> | |
35 <log type="coverage-clover" target="docs/phpunit/clover.xml"/> | |
36 <log type="junit" target="docs/phpunit/junit.xml" logIncompleteSkipped="false"/> | |
37 <log type="testdox-html" target="docs/phpunit/testdox.html"/> | |
38 </logging> | |
39 | |
40 <php> | |
41 <ini name="memory_limit" value="-1"/> | |
42 <ini name="error_reporting" value="30719"/> <!-- E_ALL | E_STRICT --> | |
43 </php> | |
44 </phpunit> |