-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
63 lines (63 loc) · 2.32 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
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src/</directory>
</include>
<report>
<clover outputFile="build/logs/coverage.xml"/>
<html outputDirectory="build" lowUpperBound="30" highLowerBound="80"/>
</report>
</coverage>
<php>
<ini name="error_reporting" value="-1"/>
</php>
<testsuites>
<testsuite name="Admin">
<directory suffix="Test.php">tests/Admin</directory>
</testsuite>
<testsuite name="AQL">
<directory suffix="Test.php">tests/AQL</directory>
</testsuite>
<testsuite name="Auth">
<directory suffix="Test.php">tests/Auth</directory>
</testsuite>
<testsuite name="Batch">
<directory suffix="Test.php">tests/Batch</directory>
</testsuite>
<testsuite name="Cursor">
<directory suffix="Test.php">tests/Cursor</directory>
</testsuite>
<testsuite name="Collection">
<directory suffix="Test.php">tests/Collection</directory>
</testsuite>
<testsuite name="Connection">
<directory suffix="Test.php">tests/Connection</directory>
</testsuite>
<testsuite name="Document">
<directory suffix="Test.php">tests/Document</directory>
</testsuite>
<testsuite name="Graph">
<directory suffix="Test.php">tests/Graph</directory>
</testsuite>
<testsuite name="Database">
<directory suffix="Test.php">tests/Database</directory>
</testsuite>
<testsuite name="Http">
<directory suffix="Test.php">tests/Http</directory>
</testsuite>
<testsuite name="DataStructures">
<directory suffix="Test.php">tests/DataStructures</directory>
</testsuite>
<testsuite name="Validation">
<directory suffix="Test.php">tests/Validation</directory>
</testsuite>
<testsuite name="Transaction">
<directory suffix="Test.php">tests/Transaction</directory>
</testsuite>
<testsuite name="View">
<directory suffix="Test.php">tests/View</directory>
</testsuite>
</testsuites>
<logging/>
</phpunit>