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

21 lines
734 B
XML

<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
bootstrap="./test/bootstrap.php"
>
<!-- "./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>
</testsuite>
<testsuite name="psr4">
<file>test/app1/src/PSR4Test.php</file>
</testsuite>
<testsuite name="classmap">
<file>test/app1/src/ClassmapTest.php</file>
</testsuite>
</testsuites>
</phpunit>