-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
65 lines (65 loc) · 2.5 KB
/
Copy pathphpunit.xml
File metadata and controls
65 lines (65 loc) · 2.5 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
58
59
60
61
62
63
64
65
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Core Unit">
<directory>packages/core/tests/Unit</directory>
</testsuite>
<testsuite name="Core Feature">
<directory>packages/core/tests/Feature</directory>
</testsuite>
<testsuite name="Forms Unit">
<directory>packages/forms/tests/Unit</directory>
</testsuite>
<testsuite name="Forms Feature">
<directory>packages/forms/tests/Feature</directory>
</testsuite>
<testsuite name="Table Unit">
<directory>packages/table/tests/Unit</directory>
</testsuite>
<testsuite name="Table Feature">
<directory>packages/table/tests/Feature</directory>
</testsuite>
<testsuite name="Table Benchmarks">
<directory>packages/table/tests/Benchmarks</directory>
</testsuite>
<testsuite name="Sortable Unit">
<directory>packages/sortable/tests/Unit</directory>
</testsuite>
<testsuite name="Sortable Feature">
<directory>packages/sortable/tests/Feature</directory>
</testsuite>
<testsuite name="Forms Standalone">
<directory>packages/forms/tests/Standalone</directory>
</testsuite>
<testsuite name="Boost Unit">
<directory>packages/boost/tests/Unit</directory>
</testsuite>
<testsuite name="Boost Feature">
<directory>packages/boost/tests/Feature</directory>
</testsuite>
<testsuite name="Integration">
<directory>tests/Integration</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>packages/core/src</directory>
<directory>packages/forms/src</directory>
<directory>packages/table/src</directory>
<directory>packages/sortable/src</directory>
<directory>packages/boost/src</directory>
</include>
</source>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="DB_DATABASE" value=":memory:"/>
</php>
</phpunit>