<!-- Copy and rename to phpunit.xml. Customize as needed. -->
<phpunit backupGlobals="false"
    backupStaticAttributes="false"
    syntaxCheck="false"
    bootstrap="bootstrap.inc"
    colors="true">
  <testsuites>
    <testsuite name="Drush Test Suite">
      <directory>.</directory>
    </testsuite>
  </testsuites>

  <php>
    <!-- These variables may alternatively be set as bash environment variables. -->

    <!-- Drupal major version to run tests over -->
    <!-- <var name="UNISH_DRUPAL_MAJOR_VERSION" value="8"/> -->

    <!--Uncomment and edit one of the lines below depending on DB platform.-->
    <!--DB User must have create/drop permissions-->
    <!-- <var name="UNISH_DB_URL" value="mysql://root:@127.0.0.1"/> -->
    <!-- <var name="UNISH_DB_URL" value="pgsql://postgres:@localhost"/>-->
    <!-- <var name="UNISH_DB_URL" value="sqlite://none/of/this/matters"/> -->

    <!--User must have write permissions to this directory.-->
    <!--If not supplied, defaults to sys_get_tmp_dir().-->
    <!-- <var name="UNISH_TMP" value="/tmp"/> -->

    <!--Uncomment the line below if your path to drush differs from `which drush`. Use absolute path.-->
    <!--<var name="UNISH_DRUSH" value="/Users/mw/bin/drush"/>-->

    <!--Uncomment to provide a group the user running the tests belong to. This is needed for some filesystem tests. -->
    <!--<var name="UNISH_USERGROUP" value="staff"/>-->

    <!-- Uncomment to disable the total runtime and output timeouts for commands run through CommandUnishTestCase::execute().  -->
    <!-- <env name="UNISH_NO_TIMEOUTS" value="y"/> -->

    <includePath>.</includePath>
  </php>
</phpunit>
