-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathphpunit.testing.xml
More file actions
24 lines (24 loc) · 1.18 KB
/
Copy pathphpunit.testing.xml
File metadata and controls
24 lines (24 loc) · 1.18 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
<?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="tests/bootstrap.php" colors="true" failOnRisky="false">
<testsuites>
<testsuite name="Unit"><directory>tests/Unit</directory></testsuite>
<testsuite name="Feature"><directory>tests/Feature</directory></testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing" force="true"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_STORE" value="array"/>
<env name="DB_CONNECTION" value="mysql" force="true"/>
<env name="DB_DATABASE" value="pnlcs_test" force="true"/>
<env name="DB_HOST" value="127.0.0.1" force="true"/>
<env name="DB_PORT" value="33061" force="true"/>
<env name="DB_USERNAME" value="root" force="true"/>
<env name="DB_PASSWORD" value="testroot" force="true"/>
<env name="DB_SOCKET" value="" force="true"/>
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
</php>
</phpunit>