-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
50 lines (50 loc) · 1.88 KB
/
phpunit.xml
File metadata and controls
50 lines (50 loc) · 1.88 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="Package Test Suite">
<directory suffix=".php">./tests/</directory>
</testsuite>
<!-- <testsuite name="all">
<directory>tests/</directory>
<exclude>tests/RDBMSRelationsTest.php</exclude>
</testsuite>
<testsuite name="schema">
<directory>tests/SchemaTest.php</directory>
</testsuite>
<testsuite name="seeder">
<directory>tests/SeederTest.php</directory>
</testsuite>
<testsuite name="cache">
<directory>tests/CacheTest.php</directory>
</testsuite> -->
<testsuite name="builder">
<directory>tests/QueryBuilderTest.php</directory>
<!--<directory>tests/QueryTest.php</directory> -->
</testsuite>
<testsuite name="model">
<directory>tests/ModelTest.php</directory>
<!-- <directory>tests/RelationsTest.php</directory> -->
</testsuite>
<testsuite name="relations">
<directory>tests/RelationsTest.php</directory>
<directory>tests/EmbeddedRelationsTest.php</directory>
</testsuite>
<testsuite name="rdbmsrelations">
<directory>tests/RelationsTest.php</directory>
<directory>tests/RDBMSRelationsTest.php</directory>
</testsuite>
<!--<testsuite name="validation">
<directory>tests/ValidationTest.php</directory>
</testsuite> -->
</testsuites>
</phpunit>