Skip to content

Commit

Permalink
Updated phpunit.xml.
Browse files Browse the repository at this point in the history
  • Loading branch information
JakyeRU committed Feb 15, 2023
1 parent a775acd commit a7830b2
Showing 1 changed file with 26 additions and 31 deletions.
57 changes: 26 additions & 31 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,32 +1,27 @@
<?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>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<php>
<!-- Test values -->
<env name="APP_ENV" value="testing" />
<env name="APP_KEY" value="base64:mAzAWhNdvQdowN39ybLHSV1jWxhQMjl5VvziycYCtSQ="/>
<env name="DB_CONNECTION" value="testing"/>

<env name="LARASCORD_CLIENT_ID" value="0000000000000000" />
<env name="LARASCORD_CLIENT_SECRET" value="ZFe6qUaYL4PSJ5vH4Tm8gtJaX9xmeqJp" />
<env name="LARASCORD_GRANT_TYPE" value="authorization_code" />
<env name="LARASCORD_PREFIX" value="larascord" />
<env name="LARASCORD_SCOPE" value="identify&amp;email" />
</php>
</phpunit>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" cacheDirectory=".phpunit.cache">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<php>
<!-- Test values -->
<env name="APP_ENV" value="testing"/>
<env name="APP_KEY" value="base64:mAzAWhNdvQdowN39ybLHSV1jWxhQMjl5VvziycYCtSQ="/>
<env name="DB_CONNECTION" value="testing"/>
<env name="LARASCORD_CLIENT_ID" value="0000000000000000"/>
<env name="LARASCORD_CLIENT_SECRET" value="ZFe6qUaYL4PSJ5vH4Tm8gtJaX9xmeqJp"/>
<env name="LARASCORD_GRANT_TYPE" value="authorization_code"/>
<env name="LARASCORD_PREFIX" value="larascord"/>
<env name="LARASCORD_SCOPE" value="identify&amp;email"/>
</php>
</phpunit>

0 comments on commit a7830b2

Please sign in to comment.