-
Notifications
You must be signed in to change notification settings - Fork 142
/
phpunit.xml
56 lines (52 loc) · 1.51 KB
/
phpunit.xml
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
47
48
49
50
51
52
53
54
55
56
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
syntaxCheck="true"
>
<testsuites>
<testsuite name="core">
<file>tests/LavachartsTest.php</file>
<file>tests/VolcanoTest.php</file>
</testsuite>
<testsuite name="charts">
<directory>tests/Charts/</directory>
</testsuite>
<testsuite name="dashboards">
<directory>tests/Dashboards/</directory>
</testsuite>
<testsuite name="datatables">
<directory>tests/DataTables/</directory>
</testsuite>
<testsuite name="javascript">
<directory>tests/Javascript/</directory>
</testsuite>
<testsuite name="values">
<directory>tests/Values/</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>vendor/</directory>
<directory>tests/</directory>
<directory>src/Laravel/</directory>
<directory>src/Symfony/</directory>
</blacklist>
</filter>
<logging>
<log type="coverage-clover"
target="build/logs/clover.xml"
charset="UTF-8"
highlight="false"
lowUpperBound="35"
highLowerBound="70" />
<log type="testdox-html"
target="build/logs/testdox.html" />
</logging>
<listeners>
<listener class="\Mockery\Adapter\Phpunit\TestListener" />
</listeners>
</phpunit>