1
0
mirror of https://github.com/danog/class-finder.git synced 2024-11-26 12:04:42 +01:00
class-finder/phpunit.xml

33 lines
1.2 KiB
XML
Raw Normal View History

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>
<file>test/app1/src/PSR4Test.php</file>
<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">
<file>test/app1/src/PSR4Test.php</file>
<directory>test/unit/PSR4</directory>
2018-09-08 21:48:10 +02:00
</testsuite>
<testsuite name="classmap">
<file>test/app1/src/ClassmapTest.php</file>
<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>
</phpunit>