Skip to content

Commit

Permalink
Update phpunit.xml.dist config
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelMwangiW committed Jan 25, 2024
1 parent bc876ac commit 8f52e18
Showing 1 changed file with 28 additions and 40 deletions.
68 changes: 28 additions & 40 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,42 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
executionOrder="random"
failOnWarning="true"
failOnRisky="true"
failOnEmptyTestSuite="true"
beStrictAboutOutputDuringTests="true"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
>
<testsuites>
<testsuite name="SamuelMwangiW Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
<php>
<env name="AFRICASTALKING_USERNAME" value="sandbox"/>
<env name="AFRICASTALKING_API_KEY" value=""/>
<env name="AFRICASTALKING_FROM" value=""/>
<env name="AFRICASTALKING_BACKUP_SENDERID" value=""/>
<env name="AFRICASTALKING_PAYMENT_PRODUCT" value=""/>
<env name="AFRICASTALKING_PREMIUM_SHORTCODE" value=""/>
<env name="AFRICASTALKING_VOICE_PHONE_NUMBER" value=""/>
</php>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
<testsuites>
<testsuite name="SamuelMwangiW Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<clover outputFile="build/logs/clover.xml"/>
</report>
</coverage>
<logging>
<junit outputFile="build/report.junit.xml"/>
</logging>
<php>
<env name="AFRICASTALKING_USERNAME" value="sandbox"/>
<env name="AFRICASTALKING_API_KEY" value=""/>
<env name="AFRICASTALKING_FROM" value=""/>
<env name="AFRICASTALKING_BACKUP_SENDERID" value=""/>
<env name="AFRICASTALKING_PAYMENT_PRODUCT" value=""/>
<env name="AFRICASTALKING_PREMIUM_SHORTCODE" value=""/>
<env name="AFRICASTALKING_VOICE_PHONE_NUMBER" value=""/>
</php>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>

0 comments on commit 8f52e18

Please sign in to comment.