-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
37 lines (35 loc) · 1.13 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
<phpunit backupGlobals="true"
backupStaticAttributes="true"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="true"
stopOnFailure="false"
syntaxCheck="true"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
bootstrap="tests/bootstrap.php">
<logging>
<log type="coverage-html" target="report/tests/coverage" charset="UTF-8"/>
<log type="testdox-html" target="report/tests/report.html"/>
<log type="testdox-text" target="report/tests/report.txt"/>
<log type="tap" target="report/tests/report.tap"/>
</logging>
<testsuites>
<testsuite name="Fajr">
<directory>tests/src</directory>
</testsuite>
<testsuite name="Libfajr">
<directory>libfajr/tests</directory>
</testsuite>
</testsuites>
<!-- Konfiguraciu whitelistu pre code coverage -->
<filter>
<whitelist>
<directory suffix=".php">src</directory>
<exclude>
<file>src/index.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>