-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
34 lines (34 loc) · 1.11 KB
/
phpunit.xml.dist
File metadata and controls
34 lines (34 loc) · 1.11 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
<phpunit bootstrap="vendor/autoload.php" printerClass="\PHPUnit\TextUI\DefaultResultPrinter" colors="true">
<php>
<var name="DB_DSN" value="sqlite::memory:" />
<var name="DB_USER" value="" />
<var name="DB_PASSWD" value="" />
<var name="DB_DBNAME" value="" />
</php>
<testsuites>
<testsuite name="main">
<directory>tests</directory>
<directory>tests/Core</directory>
<directory>tests/Service</directory>
<directory>tests/DemoApp</directory>
<directory>tests/Callback</directory>
<directory>tests/Javascript</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>demos_http</group>
</exclude>
</groups>
<listeners>
<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener" />
</listeners>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<php outputFile="build/logs/clover.cov" />
</report>
</coverage>
</phpunit>