You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?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="Feature" > <directory suffix="Test.php">./tests/Feature</directory> </testsuite> <!-- <testsuite name="iLaravel" >--> <!-- <directory suffix="Test.php">./tests/iLaravel</directory>--> <!-- </testsuite>--> </testsuites> <coverage processUncoveredFiles="true"> <include> <directory suffix=".php">./app</directory> </include> </coverage> <php> <env name="APP_ENV" value="testing"/> <env name="DOMAIN_NAME" value="file"/> <env name="BCRYPT_ROUNDS" value="4"/> <env name="CACHE_DRIVER" value="array"/> <env name="DB_CONNECTION" value="mysql"/> <env name="DB_HOST" value="mysql"/> <env name="DB_DATABASE" value="test"/> <env name="DB_USERNAME" value="root"/> <env name="MAIL_MAILER" value="array"/> <env name="QUEUE_CONNECTION" value="sync"/> <env name="SESSION_DRIVER" value="array"/> <env name="TELESCOPE_ENABLED" value="false"/>
<env name="MONGO_HOST" value="mongodb"/> <env name="MONGO_DATABASE" value="test"/> <env name="MONGO_PORT" value="27017"/> <env name="MONGO_USERNAME" value="root"/> <env name="MONGO_PASSWORD" value="root"/>
</php> </phpunit>
|