-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
51 lines (48 loc) · 1.63 KB
/
phpunit.xml
File metadata and controls
51 lines (48 loc) · 1.63 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
backupStaticProperties="false"
cacheDirectory="tests/build/cache"
colors="true"
columns="80"
cacheResult="true"
defaultTestSuite="All-Test"
displayDetailsOnIncompleteTests="true"
displayDetailsOnSkippedTests="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
processIsolation="false"
stopOnDefect="true"
stopOnError="true"
stopOnFailure="true"
stopOnWarning="true"
testdox="false"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.2/phpunit.xsd"
>
<php>
<env name="APP_ENV" value="testing" />
<ini name="date.timezone" value="America/Bogota" />
<ini name="memory_limit" value="2048M" />
</php>
<source>
<include>
<directory suffix=".php">src/LionDatabase</directory>
</include>
<exclude>
<directory suffix=".php">src/LionDatabase/Traits</directory>
<directory suffix=".php">src/LionDatabase/Interface</directory>
</exclude>
</source>
<testsuites>
<testsuite name="All-Test">
<directory suffix=".php">tests/Drivers</directory>
<directory suffix=".php">tests/Helpers</directory>
<file>tests/ConnectionTest.php</file>
<file>tests/DriverTest.php</file>
</testsuite>
</testsuites>
</phpunit>