forked from matecat/MateCat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (25 loc) · 993 Bytes
/
phpunit.xml
File metadata and controls
25 lines (25 loc) · 993 Bytes
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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" bootstrap="tests/test_helper.php" colors="true" processIsolation="false" stopOnError="false" stopOnFailure="false" beStrictAboutTestsThatDoNotTestAnything="true">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./lib</directory>
</include>
<exclude>
<file>./lib/Utils/TaskRunner/Executor.php</file>
<file>./lib/Utils/fileupload/index.php</file>
<file>./lib/View/APIDoc.php</file>
<file>./lib/View/templates/_APIDoc.php</file>
</exclude>
</coverage>
<php>
<includePath>tests/TestHelpers</includePath>
</php>
<testsuites>
<testsuite name="Unit tests">
<directory>tests/unit</directory>
</testsuite>
<testsuite name="Plugins Unit tests">
<directory>plugins/*/tests/unit</directory>
</testsuite>
</testsuites>
</phpunit>