<?xml version="1.0" encoding="UTF-8"?>

<phpunit
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.3/phpunit.xsd"
         beStrictAboutOutputDuringTests="true"
         beStrictAboutChangesToGlobalState="true"
         colors="true"
         bootstrap="tests/bootstrap.php"
         defaultTestSuite="Default Test Suite"
>

    <php>
        <ini name="error_reporting" value="-1"/>
        <env name="MONGODB_URI" value="mongodb://127.0.0.1:27017/?serverSelectionTimeoutMS=100"/>
        <env name="MONGODB_DATABASE" value="phplib_test"/>
    </php>

    <testsuites>
        <testsuite name="Default Test Suite">
            <directory>./tests/</directory>
        </testsuite>

        <testsuite name="Atlas Data Lake Test Suite">
            <file>tests/SpecTests/AtlasDataLakeSpecTest.php</file>
        </testsuite>
    </testsuites>

    <logging>
        <log type="junit" target="test-results.xml" />
    </logging>
</phpunit>
