-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
29 lines (29 loc) · 1.49 KB
/
phpunit.xml
File metadata and controls
29 lines (29 loc) · 1.49 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" executionOrder="random" resolveDependencies="true" backupGlobals="true" backupStaticAttributes="false" cacheResult="false" colors="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" forceCoversAnnotation="false" processIsolation="true" stopOnError="true" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" stopOnRisky="false" timeoutForSmallTests="5" timeoutForMediumTests="15" timeoutForLargeTests="60" verbose="true">
<coverage processUncoveredFiles="false">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory suffix="Exception.php">src</directory>
<directory suffix="ServiceProvider.php">src</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="rest">
<directory suffix="Test.php">tests/Controller</directory>
</testsuite>
<testsuite name="container">
<directory suffix="Test.php">tests/Dependency</directory>
</testsuite>
<testsuite name="http">
<directory suffix="Test.php">tests/Http</directory>
</testsuite>
<testsuite name="router">
<directory suffix="Test.php">tests/Router</directory>
</testsuite>
<testsuite name="state">
<directory suffix="Test.php">tests/State</directory>
</testsuite>
</testsuites>
</phpunit>