-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathphpunit.xml.dist
36 lines (36 loc) · 1.35 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
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.5/phpunit.xsd"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false">
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="unit">
<directory>tests/cases/unit</directory>
</testsuite>
<testsuite name="unit:api">
<directory>tests/cases/unit/Api</directory>
</testsuite>
<testsuite name="unit:expectation">
<directory>tests/cases/unit/Expectation</directory>
</testsuite>
<testsuite name="unit:name">
<directory>tests/cases/unit/Name</directory>
</testsuite>
<testsuite name="unit:hook">
<directory>tests/cases/unit/Hook</directory>
</testsuite>
<testsuite name="functional">
<directory>tests/cases/functional</directory>
</testsuite>
</testsuites>
</phpunit>