Skip to content
Snippets Groups Projects
phpunit.xml 852 B
Newer Older
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true"
         beStrictAboutTestsThatDoNotTestAnything="true"
         beStrictAboutOutputDuringTests="true"
         beStrictAboutChangesToGlobalState="true"
         printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter">
    <php>
        <!-- Set error reporting to E_ALL. -->
        <ini name="error_reporting" value="32767"/>
        <!-- Do not limit the amount of memory tests take to run. -->
        <ini name="memory_limit" value="-1"/>
    </php>
    <testsuites>
        <testsuite name="Recurring Events Test Suite">
            <directory>./tests</directory>
            <!-- directory>./modules/recurring_events_registration/tests</directory -->
            <!-- directory>./modules/recurring_events_views/tests</directory -->
        </testsuite>
    </testsuites>
</phpunit>