forked from chaosarium/lwt
-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathphpunit.xml
More file actions
34 lines (34 loc) · 1.22 KB
/
phpunit.xml
File metadata and controls
34 lines (34 loc) · 1.22 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" colors="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
<php>
<ini name="error_log" value="/dev/null"/>
</php>
<testsuites>
<testsuite name="LWT Test Suite">
<directory>tests/</directory>
</testsuite>
<testsuite name="integration">
<file>tests/backend/Core/Database/ForeignKeyTest.php</file>
<file>tests/backend/Core/Database/PreparedStatementTest.php</file>
<file>tests/backend/Core/Tag/TagsTest.php</file>
<file>tests/backend/Services/LanguageServiceTest.php</file>
<file>tests/backend/Services/TextDisplayServiceTest.php</file>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="coverage-report" lowUpperBound="35" highLowerBound="70"/>
<text outputFile="php://stdout" showOnlySummary="false"/>
</report>
</coverage>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./vendor</directory>
<directory>./tests</directory>
<directory>./docs</directory>
</exclude>
</source>
</phpunit>