-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.coverage.xml
More file actions
96 lines (96 loc) · 3.42 KB
/
Copy pathphpunit.coverage.xml
File metadata and controls
96 lines (96 loc) · 3.42 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Academics">
<directory>tests/Academics</directory>
</testsuite>
<testsuite name="Assessment">
<directory>tests/Assessment</directory>
</testsuite>
<testsuite name="Assignment">
<directory>tests/Assignment</directory>
</testsuite>
<testsuite name="Auth">
<directory>tests/Auth</directory>
</testsuite>
<testsuite name="Certification">
<directory>tests/Certification</directory>
</testsuite>
<testsuite name="Core">
<directory>tests/Core</directory>
</testsuite>
<testsuite name="Document">
<directory>tests/Document</directory>
</testsuite>
<testsuite name="Enrollment">
<directory>tests/Enrollment</directory>
</testsuite>
<testsuite name="Evaluation">
<directory>tests/Evaluation</directory>
</testsuite>
<testsuite name="Guidance">
<directory>tests/Guidance</directory>
</testsuite>
<testsuite name="Incident">
<directory>tests/Incident</directory>
</testsuite>
<testsuite name="Journals">
<directory>tests/Journals</directory>
</testsuite>
<testsuite name="Partners">
<directory>tests/Partners</directory>
</testsuite>
<testsuite name="Program">
<directory>tests/Program</directory>
</testsuite>
<testsuite name="Providers">
<directory>tests/Providers</directory>
</testsuite>
<testsuite name="Reports">
<directory>tests/Reports</directory>
</testsuite>
<testsuite name="Settings">
<directory>tests/Settings</directory>
</testsuite>
<testsuite name="Setup">
<directory>tests/Setup</directory>
</testsuite>
<testsuite name="SysAdmin">
<directory>tests/SysAdmin</directory>
</testsuite>
<testsuite name="User">
<directory>tests/User</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>app</directory>
</include>
</source>
<coverage>
<report>
<html outputDirectory="storage/coverage/html" lowUpperBound="50" highLowerBound="90"/>
<clover outputFile="storage/coverage/clover/clover.xml"/>
</report>
</coverage>
<php>
<ini name="memory_limit" value="512M"/>
<env name="APP_ENV" value="testing"/>
<env name="APP_MAINTENANCE_DRIVER" value="file"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="BROADCAST_CONNECTION" value="null"/>
<env name="CACHE_STORE" value="array"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="DB_DATABASE" value=":memory:"/>
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="PULSE_ENABLED" value="false"/>
<env name="TELESCOPE_ENABLED" value="false"/>
<env name="NIGHTWATCH_ENABLED" value="false"/>
</php>
</phpunit>