-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
32 lines (32 loc) · 1.24 KB
/
phpunit.xml
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
30
31
32
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.3/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
checkForUnintentionallyCoveredCode="false"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestSize="true"
beStrictAboutChangesToGlobalState="false">
<testsuites>
<testsuite name="all">
<directory>tests</directory>
</testsuite>
<testsuite name="billing">
<file>tests/src/BillingClientTest.php</file>
</testsuite>
<testsuite name="echo">
<file>tests/src/EchoClientTest.php</file>
</testsuite>
<testsuite name="terminal">
<file>tests/src/TerminalClientTest.php</file>
</testsuite>
</testsuites>
<listeners>
<listener class="VCR\PHPUnit\TestListener\VCRTestListener" file="vendor/php-vcr/phpunit-testlistener-vcr/src/VCRTestListener.php" />
</listeners>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>