comparison vendor/phpunit/phpunit-mock-objects/phpunit.xml @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents
children
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.5/phpunit.xsd"
4 bootstrap="tests/bootstrap.php"
5 beStrictAboutCoversAnnotation="true"
6 beStrictAboutOutputDuringTests="true"
7 beStrictAboutTodoAnnotatedTests="true"
8 verbose="true">
9 <testsuites>
10 <testsuite name="small">
11 <directory suffix="Test.php">tests</directory>
12 </testsuite>
13
14 <testsuite name="large">
15 <directory suffix=".phpt">tests</directory>
16 </testsuite>
17 </testsuites>
18
19 <filter>
20 <whitelist processUncoveredFilesFromWhitelist="true">
21 <directory suffix=".php">src</directory>
22 </whitelist>
23 </filter>
24
25 <php>
26 <const name="PHPUNIT_TESTSUITE" value="true"/>
27 </php>
28 </phpunit>