forked from yiisoft/db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
85 lines (85 loc) · 4.19 KB
/
phpunit.xml.dist
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
colors="true"
bootstrap="vendor/autoload.php"
executionOrder="default"
failOnRisky="true"
failOnWarning="true"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd"
>
<source>
<include>
<directory>./src</directory>
</include>
<exclude>
<directory>./src/TestSupport</directory>
<directory>./tests</directory>
<directory>./vendor</directory>
<file>./src/Command/CommandInterface.php</file>
<file>./src/Command/ParamInterface.php</file>
<file>./src/Connection/ConnectionInterface.php</file>
<file>./src/Connection/ConnectionPoolInterface.php</file>
<file>./src/Constraint/ConstraintSchemaInterface.php</file>
<file>./src/Driver/DriverInterface.php</file>
<file>./src/Driver/PDO/CommandPDOInterface.php</file>
<file>./src/Driver/PDO/ConnectionPDOInterface.php</file>
<file>./src/Driver/PDO/ConnectionPDOPoolInterface.php</file>
<file>./src/Driver/PDO/PDODriverInterface.php</file>
<file>./src/Expression/ExpressionBuilderInterface.php</file>
<file>./src/Expression/ExpressionInterface.php</file>
<file>./src/Profiler/ProfilerInterface.php</file>
<file>./src/Query/BatchQueryResultInterface.php</file>
<file>./src/Query/Data/DataReaderInterface.php</file>
<file>./src/Query/QueryFunctionsInterface.php</file>
<file>./src/Query/QueryInterface.php</file>
<file>./src/Query/QueryPartsInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/BetweenColumnsConditionInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/BetweenConditionInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/ConditionInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/ConjunctionConditionInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/ExistConditionInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/HashConditionInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/InConditionInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/LikeConditionInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/NotConditionInterface.php</file>
<file>./src/QueryBuilder/Condition/Interface/SimpleConditionInterface.php</file>
<file>./src/QueryBuilder/DDLQueryBuilderInterface.php</file>
<file>./src/QueryBuilder/DMLQueryBuilderInterface.php</file>
<file>./src/QueryBuilder/DQLQueryBuilderInterface.php</file>
<file>./src/QueryBuilder/QueryBuilderInterface.php</file>
<file>./src/Schema/ColumnSchemaInterface.php</file>
<file>./src/Schema/QuoterInterface.php</file>
<file>./src/Schema/SchemaInterface.php</file>
<file>./src/Schema/TableSchemaInterface.php</file>
<file>./src/Transaction/TransactionInterface.php</file>
</exclude>
</source>
<php>
<ini name="error_reporting" value="-1"/>
</php>
<testsuites>
<testsuite name="Db">
<directory>./tests/Db</directory>
</testsuite>
<testsuite name="ActiveRecord">
<directory>./vendor/yiisoft/active-record/tests/Driver</directory>
</testsuite>
<testsuite name="Mssql">
<directory>./vendor/yiisoft/db-mssql/tests</directory>
</testsuite>
<testsuite name="Mysql">
<directory>./vendor/yiisoft/db-mysql/tests</directory>
</testsuite>
<testsuite name="Oracle">
<directory>./vendor/yiisoft/db-oracle/tests</directory>
</testsuite>
<testsuite name="Pgsql">
<directory>./vendor/yiisoft/db-pgsql/tests</directory>
</testsuite>
<testsuite name="Sqlite">
<directory>./vendor/yiisoft/db-sqlite/tests</directory>
</testsuite>
</testsuites>
</phpunit>