Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
35 lines (32 loc) · 1.2 KB
/
Copy pathphpunit.xml
File metadata and controls
35 lines (32 loc) · 1.2 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
cacheDirectory=".phpunit.cache"
executionOrder="depends,defects"
requireCoverageMetadata="true"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
colors="true"
failOnRisky="true"
failOnWarning="true">
<php>
<ininame="error_reporting"value="-1" />
<servername="APP_ENV"value="test"force="true" />
<servername="SHELL_VERBOSITY"value="-1" />
<servername="KERNEL_CLASS"value="DomainDrivers\SmartSchedule\Kernel" />
</php>
<testsuites>
<testsuitename="unit">
<directory>tests/Unit</directory>
</testsuite>
</testsuites>
<sourcerestrictDeprecations="true"restrictNotices="true"restrictWarnings="true">
<include>
<directory>src</directory>
</include>
</source>
<extensions>
<bootstrapclass="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" />
</extensions>
</phpunit>