-
Notifications
You must be signed in to change notification settings - Fork 439
/
phpunit.xml.dist
28 lines (28 loc) · 1.06 KB
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./Core/unit-bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">*/src</directory>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory suffix=".php">*/src/V[!a-zA-Z]*</directory>
<directory suffix=".php">*/src/*/V[!a-zA-Z]*</directory>
<directory suffix=".php">*/src/*/*/V[!a-zA-Z]*</directory>
<directory suffix=".php">Core/src/Testing</directory>
<directory suffix=".php">dev</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Unit Test Suite">
<directory>*/tests/Unit</directory>
<exclude>dev/tests/Unit</exclude>
</testsuite>
</testsuites>
<php>
<ini name="memory_limit" value="2048M"/>
</php>
<listeners>
<listener class="Google\Cloud\Core\Testing\GcTestListener" file="Core/src/Testing/GcTestListener.php"/>
</listeners>
</phpunit>