14 lines
442 B
XML
14 lines
442 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/13.1/phpunit.xsd"
|
||
|
|
bootstrap="bootstrap.php"
|
||
|
|
colors="true"
|
||
|
|
failOnRisky="true"
|
||
|
|
failOnWarning="true">
|
||
|
|
<testsuites>
|
||
|
|
<testsuite name="e2e">
|
||
|
|
<directory>tests</directory>
|
||
|
|
</testsuite>
|
||
|
|
</testsuites>
|
||
|
|
</phpunit>
|