mirror of
https://github.com/FriendsOfSymfony/FOSMessage.git
synced 2026-04-27 00:08:14 +02:00
24 lines
786 B
XML
24 lines
786 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.6/phpunit.xsd"
|
|
backupGlobals = "false"
|
|
beStrictAboutTestsThatDoNotTestAnything = "true"
|
|
beStrictAboutOutputDuringTests = "true"
|
|
colors = "true"
|
|
verbose = "true"
|
|
bootstrap = "vendor/autoload.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="FOSMessage Test Suite">
|
|
<directory>tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|