-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
47 lines (47 loc) · 1.85 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
47 lines (47 loc) · 1.85 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/13.2/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
cacheResult="false"
beStrictAboutOutputDuringTests="true"
failOnWarning="true"
failOnRisky="true"
failOnDeprecation="true"
>
<testsuites>
<testsuite name="contracts">
<directory suffix="Test.php">packages/contracts/tests</directory>
</testsuite>
<testsuite name="core">
<directory suffix="Test.php">packages/core/tests</directory>
</testsuite>
<testsuite name="dev-tools">
<directory suffix="Test.php">packages/dev-tools/tests</directory>
</testsuite>
<testsuite name="http">
<directory suffix="Test.php">packages/http/tests</directory>
</testsuite>
<testsuite name="module">
<directory suffix="Test.php">packages/module/tests</directory>
</testsuite>
<testsuite name="plugin">
<directory suffix="Test.php">packages/plugin/tests</directory>
</testsuite>
<testsuite name="testing">
<directory suffix="Test.php">packages/testing/tests</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">packages/contracts/src</directory>
<directory suffix=".php">packages/core/src</directory>
<directory suffix=".php">packages/dev-tools/src</directory>
<directory suffix=".php">packages/http/src</directory>
<directory suffix=".php">packages/module/src</directory>
<directory suffix=".php">packages/plugin/src</directory>
<directory suffix=".php">packages/testing/src</directory>
</include>
</source>
</phpunit>