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