forked from drupal-graphql/graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
24 lines (23 loc) · 792 Bytes
/
phpunit.xml.dist
File metadata and controls
24 lines (23 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php" colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true">
<testsuites>
<testsuite name="unit">
<file>./tests/TestSuites/UnitTestSuite.php</file>
</testsuite>
<testsuite name="kernel">
<file>./tests/TestSuites/KernelTestSuite.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">../modules/graphql/src</directory>
<exclude>
<directory suffix="Test.php">../modules/graphql</directory>
<directory suffix="TestBase.php">../modules/graphql</directory>
</exclude>
</whitelist>
</filter>
</phpunit>