-
Notifications
You must be signed in to change notification settings - Fork 20
/
phpunit.xml.dist
46 lines (46 loc) · 1.41 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
backupGlobals="false"
bootstrap="tests/bootstrap.php"
colors="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnRisky="false"
stopOnSkipped="false"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
>
<coverage/>
<testsuites>
<testsuite name="parser">
<directory suffix="Test.php">tests/PhpParser/</directory>
</testsuite>
<testsuite name="reference">
<directory suffix="Test.php">tests/Reference/</directory>
</testsuite>
<testsuite name="sniffs">
<directory suffix="Test.php">tests/Sniffs/</directory>
</testsuite>
<testsuite name="features">
<directory suffix="IssueTest.php">tests/</directory>
<directory suffix="IssueTest.php">tests/PhpFeatures/</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>large</group>
<group>not_implemented</group>
</exclude>
</groups>
<php>
<env name="APP_ENV" value="tests" force="true"/>
</php>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
</phpunit>