Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/phpunit.xml
7382 views
1
<?xml version="1.0" encoding="UTF-8"?>
2
<phpunit
3
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
5
bootstrap="bootstrap/tests.php"
6
colors="true"
7
>
8
<coverage>
9
<include>
10
<directory suffix=".php">./app</directory>
11
</include>
12
</coverage>
13
<testsuites>
14
<testsuite name="Integration">
15
<directory>./tests/Integration</directory>
16
</testsuite>
17
<testsuite name="Unit">
18
<directory>./tests/Unit</directory>
19
</testsuite>
20
</testsuites>
21
<php>
22
<env name="APP_ENV" value="testing" />
23
<env name="APP_MAINTENANCE_DRIVER" value="file" />
24
<env name="BCRYPT_ROUNDS" value="4" />
25
<env name="CACHE_STORE" value="array" />
26
<env name="DB_DATABASE" value="testing" />
27
<env name="MAIL_MAILER" value="array" />
28
<env name="SESSION_DRIVER" value="array" />
29
<env name="QUEUE_CONNECTION" value="sync" />
30
</php>
31
</phpunit>
32
33