-
Notifications
You must be signed in to change notification settings - Fork 159
Expand file tree
/
Copy pathphpunit.xml
More file actions
40 lines (40 loc) · 1.51 KB
/
phpunit.xml
File metadata and controls
40 lines (40 loc) · 1.51 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="bootstrap.php"
colors="true"
cacheDirectory="../.phpunit.cache"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
failOnDeprecation="false"
failOnNotice="false"
failOnWarning="false"
>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./Migration</directory>
<directory suffix="Test.php">./DataDiff</directory>
</testsuite>
<testsuite name="DBDiff">
<file>./DBDiffComprehensiveTest.php</file>
<file>./End2EndTest.php</file>
</testsuite>
<testsuite name="Postgres">
<file>./End2EndPostgresTest.php</file>
<file>./DBDiffComprehensivePostgresTest.php</file>
</testsuite>
<testsuite name="SQLite">
<file>./End2EndSQLiteTest.php</file>
<file>./DBDiffComprehensiveSQLiteTest.php</file>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">../src</directory>
</include>
</source>
</phpunit>