mirror of
https://github.com/anthonyaxenov/atol-online.git
synced 2024-11-16 03:50:47 +00:00
26 lines
745 B
XML
26 lines
745 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
~ Copyright (c) 2020-2021 Антон Аксенов (Anthony Axenov)
|
|
~
|
|
~ This code is licensed under MIT.
|
|
~ Этот код распространяется по лицензии MIT.
|
|
~ https://github.com/anthonyaxenov/atol-online/blob/master/LICENSE
|
|
-->
|
|
|
|
<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="All">
|
|
<directory suffix="Test.php">./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">src</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|