18 lines
560 B
XML
18 lines
560 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<!--
|
||
|
|
Copyright (C) 2026 Moko Consulting <hello@mokoconsulting.tech>
|
||
|
|
SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
-->
|
||
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
||
|
|
bootstrap="vendor/autoload.php"
|
||
|
|
colors="true"
|
||
|
|
failOnRisky="true"
|
||
|
|
failOnWarning="true">
|
||
|
|
<testsuites>
|
||
|
|
<testsuite name="Unit">
|
||
|
|
<directory>tests/Unit</directory>
|
||
|
|
</testsuite>
|
||
|
|
</testsuites>
|
||
|
|
</phpunit>
|