-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
32 lines (31 loc) · 1.07 KB
/
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
27
28
29
30
31
32
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.7/phpunit.xsd"
bootstrap="vendor/autoload.php"
>
<testsuites>
<testsuite name="LoggerTestSuite">
<file>ut/LoggerTest.php</file>
</testsuite>
<testsuite name="FlysystemExtensionSuite">
<file>ut/AppendableFilesystemTest.php</file>
<file>ut/AwsS3FilesystemTest.php</file>
</testsuite>
<testsuite name="DataSuite">
<file>ut/DataProviderTest.php</file>
<file>ut/DataPackerTest.php</file>
</testsuite>
<testsuite name="MUtilsSuite">
<file>ut/MUtilsTest.php</file>
</testsuite>
<testsuite name="Event">
<file>ut/EventTest.php</file>
</testsuite>
<testsuite name="Task">
<file>ut/TaskTest.php</file>
</testsuite>
<testsuite name="Cli">
<file>ut/CommandLineArgParserTest.php</file>
</testsuite>
</testsuites>
</phpunit>