matrix-api/phpunit.xml

27 lines
1015 B
XML
Raw Permalink Normal View History

2024-03-16 00:08:24 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheResultFile=".phpunit.cache/test-results"
executionOrder="depends,defects"
forceCoversAnnotation="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
verbose="true">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<php>
<server name="MATRIX_BASE_URL" value="https://example.com"/>
<server name="MATRIX_TOKEN" value="lktzzgggg"/>
<server name="MATRIX_ROOM_ID" value="!ttggzzuu:example.com"/>
</php>
</phpunit>