<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
         bootstrap="tests/bootstrap_db.php"
         colors="true"
         verbose="true"
         stopOnFailure="false">
    <testsuites>
        <testsuite name="Database Tests">
            <file>tests/AvailabilityServiceDbTest.php</file>
            <file>tests/MailNotificationHelperTest.php</file>
            <file>tests/OnboardingServiceDbTest.php</file>
            <file>tests/RateServiceDbTest.php</file>
            <file>tests/SignupServiceDbTest.php</file>
        </testsuite>
    </testsuites>
    <coverage>
        <include>
            <directory suffix=".php">www/includes</directory>
        </include>
    </coverage>
</phpunit>
