-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
57 lines (57 loc) · 2.17 KB
/
phpunit.xml
File metadata and controls
57 lines (57 loc) · 2.17 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache" executionOrder="depends,defects" requireCoverageMetadata="true" beStrictAboutCoverageMetadata="true" beStrictAboutOutputDuringTests="true" failOnRisky="true" failOnWarning="true" failOnDeprecation="true" displayDetailsOnTestsThatTriggerWarnings="true" colors="true">
<testsuites>
<testsuite name="Functions">
<file>test/functionsTest.php</file>
</testsuite>
<testsuite name="API">
<file>test/apiFunctionsTest.php</file>
</testsuite>
<testsuite name="MySQL">
<file>test/clashDBTest.php</file>
</testsuite>
<testsuite name="MongoDB">
<file>test/mongoDBTest.php</file>
</testsuite>
<testsuite name="Update">
<file>test/updateTest.php</file>
</testsuite>
<testsuite name="Templates">
<file>test/templatesTest.php</file>
</testsuite>
<testsuite name="Accounts">
<file>test/accountsTest.php</file>
</testsuite>
<testsuite name="Languages">
<file>test/translateTest.php</file>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="test/results" customCssFile="/hdd1/clashapp/css/coverage.css"/>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<source ignoreIndirectDeprecations="true">
<include>
<directory suffix=".php">.</directory>
</include>
<exclude>
<directory>test/</directory>
<directory>vendor/</directory>
<directory>plugins/</directory>
<directory>ajax/</directory>
<directory>pages/</directory>
<file>accounts/connect.php</file>
<file>accounts/login.php</file>
<file>accounts/logout.php</file>
<file>accounts/register.php</file>
<file>accounts/reset.php</file>
<file>accounts/settings.php</file>
<file>accounts/verify.php</file>
<file>accounts/verify2fa.php</file>
<file>templates/footer.php</file>
<file>templates/header.php</file>
</exclude>
</source>
</phpunit>