forked from drupal-graphql/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
29 lines (28 loc) · 956 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php" colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
checkForUnintentionallyCoveredCode="false">
<testsuites>
<testsuite name="unit">
<file>./tests/TestSuites/UnitTestSuite.php</file>
</testsuite>
<testsuite name="kernel">
<file>./tests/TestSuites/KernelTestSuite.php</file>
</testsuite>
</testsuites>
<listeners>
<listener class="\Drupal\Tests\Listeners\DrupalStandardsListener">
</listener>
</listeners>
<filter>
<whitelist>
<directory suffix=".php">../modules/graphql</directory>
<exclude>
<directory suffix="Test.php">../modules/graphql</directory>
<directory suffix="TestBase.php">../modules/graphql</directory>
</exclude>
</whitelist>
</filter>
</phpunit>