mirror of
https://github.com/saccas/mjml-typo3.git
synced 2024-11-14 18:16:09 +01:00
Daniel Siepmann
eba401aa9f
Add all dependencies to run tests. Configure tests as composer task. Add tests to travis. Adjust code to make him exchangeable and testable.
28 lines
730 B
XML
28 lines
730 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>
|