<?xml version="1.0" encoding="UTF-8"?>
<phpunit
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:noNamespaceSchemaLocation="lib/phpunit/phpunit.xsd"
        bootstrap="lib/phpunit/bootstrap.php"
        convertErrorsToExceptions="true"
        convertNoticesToExceptions="true"
        convertWarningsToExceptions="true"
        processIsolation="false"
        backupGlobals="false"
        backupStaticAttributes="false"
        stopOnError="false"
        stopOnFailure="false"
        stopOnIncomplete="false"
        stopOnSkipped="false"
        strict="false"
        printerClass="Hint_ResultPrinter"
        >

    <php>
        <!--<const name="PHPUNIT_LONGTEST" value="1"/> uncomment to execute also slow or otherwise expensive tests-->
    </php>

<!--All core suites need to be manually added here-->

    <testsuites>
        <testsuite name="core_question">
            <directory suffix="_test.php">question/engine/tests</directory>
        </testsuite>
        <testsuite name="mod_quiz test suite">
            <directory suffix="_test.php">mod/quiz/tests</directory>
        </testsuite>
        <testsuite name="qtype_random test suite">
            <directory suffix="_test.php">question/type/random/tests</directory>
        </testsuite>

    </testsuites>

</phpunit>
