2020-01-11 06:30:25 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-11-18 04:24:30 +00:00
|
|
|
<!--
|
|
|
|
~ Copyright (c) 2020-2021 Антон Аксенов (Anthony Axenov)
|
|
|
|
~
|
|
|
|
~ This code is licensed under MIT.
|
|
|
|
~ Этот код распространяется по лицензии MIT.
|
|
|
|
~ https://github.com/anthonyaxenov/atol-online/blob/master/LICENSE
|
|
|
|
-->
|
|
|
|
|
2020-01-11 06:30:25 +00:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false">
|
|
|
|
<testsuites>
|
2021-11-18 04:24:30 +00:00
|
|
|
<testsuite name="All">
|
|
|
|
<directory suffix="Test.php">./tests</directory>
|
2020-01-11 06:30:25 +00:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2021-11-18 04:24:30 +00:00
|
|
|
|
|
|
|
<coverage>
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">src</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
2020-01-11 06:30:25 +00:00
|
|
|
</phpunit>
|