phpunit.xml 1.54 KB
Newer Older
1 2 3 4 5 6 7 8 9
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="tests/bootstrap.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
10
         stopOnFailure="true"
11 12 13
         syntaxCheck="false"
>
    <testsuites>
14
        <testsuite name="all">
15
            <directory>tests/</directory>
Jens Segers's avatar
Jens Segers committed
16
            <exclude>tests/MysqlRelationsTest.php</exclude>
17
        </testsuite>
18 19 20 21 22 23 24 25 26
        <testsuite name="schema">
            <directory>tests/SchemaTest.php</directory>
        </testsuite>
        <testsuite name="seeder">
            <directory>tests/SeederTest.php</directory>
        </testsuite>
        <testsuite name="cache">
            <directory>tests/CacheTest.php</directory>
        </testsuite>
27 28 29 30
        <testsuite name="builder">
            <directory>tests/QueryBuilderTest.php</directory>
            <directory>tests/QueryTest.php</directory>
        </testsuite>
Jens Segers's avatar
Jens Segers committed
31 32 33 34
        <testsuite name="model">
            <directory>tests/ModelTest.php</directory>
            <directory>tests/RelationsTest.php</directory>
        </testsuite>
35 36
        <testsuite name="relations">
            <directory>tests/RelationsTest.php</directory>
Jens Segers's avatar
Jens Segers committed
37 38 39
        </testsuite>
        <testsuite name="mysqlrelations">
            <directory>tests/RelationsTest.php</directory>
Jens Segers's avatar
Jens Segers committed
40
            <directory>tests/MysqlRelationsTest.php</directory>
41
        </testsuite>
42 43
    </testsuites>
</phpunit>