2018-07-21 17:26:01 +02:00
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
|
|
|
|
bootstrap="./test/bootstrap.php"
|
|
|
|
>
|
2018-09-08 21:48:10 +02:00
|
|
|
<!-- "./vendor/bin/phpunit" \-\-testsuite psr4 -->
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="all">
|
|
|
|
<file>test/app1/src/ClassFinderTest.php</file>
|
|
|
|
<file>test/app1/src/ClassmapTest.php</file>
|
2018-09-09 04:06:40 +02:00
|
|
|
<file>test/app1/src/PSR4Test.php</file>
|
2018-10-21 22:34:30 +02:00
|
|
|
<file>test/app1/src/FilesTest.php</file>
|
2018-09-09 23:15:33 +02:00
|
|
|
<directory>test/unit</directory>
|
2018-09-08 21:48:10 +02:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="psr4">
|
2018-09-09 04:06:40 +02:00
|
|
|
<file>test/app1/src/PSR4Test.php</file>
|
2018-09-09 19:47:24 +02:00
|
|
|
<directory>test/unit/PSR4</directory>
|
2018-09-08 21:48:10 +02:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="classmap">
|
|
|
|
<file>test/app1/src/ClassmapTest.php</file>
|
2018-09-16 18:52:28 +02:00
|
|
|
<directory>test/unit/Classmap</directory>
|
2018-09-08 21:48:10 +02:00
|
|
|
</testsuite>
|
2018-09-29 20:27:19 +02:00
|
|
|
<testsuite name="files">
|
|
|
|
<file>test/app1/src/FilesTest.php</file>
|
|
|
|
<directory>test/unit/Files</directory>
|
|
|
|
</testsuite>
|
2019-02-26 01:24:44 +01:00
|
|
|
<testsuite name="noAutoload">
|
|
|
|
<file>test/app2/PSR4NoAutoloadTest.php</file>
|
|
|
|
<file>test/app2/ClassmapNoAutoloadTest.php</file>
|
|
|
|
</testsuite>
|
2018-09-08 21:48:10 +02:00
|
|
|
</testsuites>
|
2020-03-24 10:08:07 +01:00
|
|
|
</phpunit>
|