-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
57 lines (55 loc) · 1.94 KB
/
phpunit.xml
File metadata and controls
57 lines (55 loc) · 1.94 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 backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="test/bootstrap.php"
>
<testsuites>
<testsuite name="CradlePHP Storm Test Suite">
<file>test/AbstractQuery.php</file>
<file>test/AbstractSql.php</file>
<file>test/Collection.php</file>
<file>test/Model.php</file>
<file>test/Search.php</file>
<file>test/QueryDelete.php</file>
<file>test/QueryInsert.php</file>
<file>test/QuerySelect.php</file>
<file>test/QueryUpdate.php</file>
<file>test/SqlException.php</file>
<file>test/MySql/QueryAlter.php</file>
<file>test/MySql/QueryCreate.php</file>
<file>test/MySql/QuerySubSelect.php</file>
<file>test/MySql/QueryUtility.php</file>
<file>test/PostGreSql/QueryAlter.php</file>
<file>test/PostGreSql/QueryCreate.php</file>
<file>test/PostGreSql/QueryDelete.php</file>
<file>test/PostGreSql/QueryInsert.php</file>
<file>test/PostGreSql/QuerySelect.php</file>
<file>test/PostGreSql/QueryUpdate.php</file>
<file>test/PostGreSql/QueryUtility.php</file>
<file>test/Sqlite/QueryAlter.php</file>
<file>test/Sqlite/QueryCreate.php</file>
<file>test/Sqlite/QueryUtility.php</file>
<file>test/MySql.php</file>
<file>test/PostGreSql.php</file>
<file>test/Sqlite.php</file>
<file>test/SqlFactory.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src</directory>
<exclude>
<directory>./vendor</directory>
<directory>./test</directory>
<file>src/SqlInterface.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>