-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
26 lines (25 loc) · 954 Bytes
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<!--
~ @copyright 2019-2022 Dicr http://dicr.org
~ @author Igor A Tarasov <develop@dicr.org>
~ @license GPL-3.0-or-later
~ @version 06.01.22 00:27:09
-->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="Dicr Test Suite">
<!-- directory>./tests/*Test.php</directory -->
<file>tests/LocalFileStoreTest.php</file>
<file>tests/FlysystemFileStoreTest.php</file>
<file>tests/TranslateTest.php</file>
<file>tests/CSVFileTest.php</file>
<file>tests/CSVResponseFormatterTest.php</file>
<!-- file>tests/SftpFileStoreTest.php</file-->
<!-- file>tests/FtpFileStoreTest.php</file-->
</testsuite>
</testsuites>
</phpunit>