mirror of
https://github.com/saccas/mjml-typo3.git
synced 2024-11-14 07:16:10 +01:00
28 lines
731 B
XML
28 lines
731 B
XML
<phpunit
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="./vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
|
|
|
|
colors="true"
|
|
convertErrorsToExceptions="false"
|
|
convertWarningsToExceptions="false"
|
|
forceCoversAnnotation="false"
|
|
processIsolation="false"
|
|
stopOnError="false"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
verbose="false">
|
|
|
|
<testsuites>
|
|
<testsuite name="unit-tests">
|
|
<directory>./Tests/Unit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./Classes</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|