-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.xml
More file actions
89 lines (88 loc) · 4.04 KB
/
Copy pathphpunit.xml
File metadata and controls
89 lines (88 loc) · 4.04 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?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="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Ecosystem">
<directory suffix="Test.php">./tests/Ecosystem</directory>
</testsuite>
<testsuite name="GraphQL">
<directory suffix="Test.php">./tests/GraphQL</directory>
</testsuite>
<testsuite name="GraphQL-Ecosystem">
<directory suffix="Test.php">./tests/GraphQL/Ecosystem</directory>
</testsuite>
<testsuite name="GraphQL-Souk">
<directory suffix="Test.php">./tests/GraphQL/Souk</directory>
</testsuite>
<testsuite name="GraphQL-Guild">
<directory suffix="Test.php">./tests/GraphQL/Guild</directory>
</testsuite>
<testsuite name="GraphQL-Social">
<directory suffix="Test.php">./tests/GraphQL/Social</directory>
</testsuite>
<testsuite name="GraphQL-Inventory">
<directory suffix="Test.php">./tests/GraphQL/Inventory</directory>
</testsuite>
<testsuite name="GraphQL-HumanResources">
<directory suffix="Test.php">./tests/GraphQL/HumanResources</directory>
</testsuite>
<testsuite name="GraphQL-Other">
<directory suffix="Test.php">./tests/GraphQL/ActionEngine</directory>
<directory suffix="Test.php">./tests/GraphQL/Connector</directory>
<directory suffix="Test.php">./tests/GraphQL/Event</directory>
<directory suffix="Test.php">./tests/GraphQL/Intelligence</directory>
<directory suffix="Test.php">./tests/GraphQL/Movipass</directory>
<directory suffix="Test.php">./tests/GraphQL/Subscription</directory>
<directory suffix="Test.php">./tests/GraphQL/Workflow</directory>
</testsuite>
<testsuite name="Inventory">
<directory suffix="Test.php">./tests/Inventory</directory>
</testsuite>
<testsuite name="Social">
<directory suffix="Test.php">./tests/Social</directory>
</testsuite>
<testsuite name="Guild">
<directory suffix="Test.php">./tests/Guild</directory>
</testsuite>
<testsuite name="Connectors">
<directory suffix="Test.php">./tests/Connectors</directory>
</testsuite>
<testsuite name="Workflow">
<directory suffix="Test.php">./tests/Workflow</directory>
</testsuite>
<testsuite name="Intelligence">
<directory suffix="Test.php">./tests/Intelligence</directory>
</testsuite>
<testsuite name="Scribe">
<directory suffix="Test.php">./tests/Scribe</directory>
</testsuite>
<testsuite name="Baka">
<directory suffix="Test.php">./tests/Baka</directory>
</testsuite>
<testsuite name="Souk">
<directory suffix="Test.php">./tests/Souk</directory>
</testsuite>
<testsuite name="Event">
<directory suffix="Test.php">./tests/Event</directory>
</testsuite>
<testsuite name="ActionEngine">
<directory suffix="Test.php">./tests/ActionEngine</directory>
</testsuite>
</testsuites>
<php>
<env name="COLLISION_PRINTER" value="true"/>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<!-- <env name="DB_CONNECTION" value="sqlite"/> -->
<!-- <env name="DB_DATABASE" value=":memory:"/> -->
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
<ini name="display_errors" value="On" />
<ini name="display_startup_errors" value="On" />
</php>
</phpunit>