-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
56 lines (56 loc) · 2.19 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="vendor/autoload.php" >
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="DatabaseLess">
<directory suffix="Test.php">./tests/Geometry</directory>
<directory suffix="Test.php">./tests/Feature</directory>
<directory suffix="Test.php">./tests/Constructors</directory>
<directory suffix="Test.php">./tests/MariaDB</directory>
<directory suffix="Test.php">./tests/MySQL</directory>
<directory suffix="Test.php">./tests/PostGIS</directory>
<directory suffix="Test.php">./tests/SpatiaLite</directory>
<directory suffix="Test.php">./tests/SQL</directory>
</testsuite>
<testsuite name="Geometry">
<directory suffix="Test.php">./tests/Geometry</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Contructor">
<directory suffix="Test.php">./tests/Constructors</directory>
</testsuite>
<testsuite name="MariaDB">
<directory suffix="Test.php">./tests/MariaDB</directory>
</testsuite>
<testsuite name="MySQL">
<directory suffix="Test.php">./tests/MySQL</directory>
</testsuite>
<testsuite name="PostGIS">
<directory suffix="Test.php">./tests/PostGIS</directory>
</testsuite>
<testsuite name="SpatiaLite">
<directory suffix="Test.php">./tests/SpatiaLite</directory>
</testsuite>
<testsuite name="SQL">
<directory suffix="Test.php">./tests/SQL</directory>
</testsuite>
<testsuite name="MariaIntegration">
<directory suffix="Test.php">./tests/Integration/MariaDB</directory>
</testsuite>
<testsuite name="MyIntegration">
<directory suffix="Test.php">./tests/Integration/MySQL</directory>
</testsuite>
<testsuite name="PGIntegration">
<directory suffix="Test.php">./tests/Integration/PostGIS</directory>
</testsuite>
</testsuites>
</phpunit>