-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
17 lines (17 loc) · 863 Bytes
/
phpunit.xml.dist
File metadata and controls
17 lines (17 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="true" bootstrap="../vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php" colors="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache" requireCoverageMetadata="false">
<coverage/>
<testsuites>
<testsuite name="functional">
<directory>../Tests/Functional/</directory>
</testsuite>
<testsuite name="unit">
<directory>../Tests/Unit/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">../Classes/</directory>
</include>
</source>
</phpunit>