Skip to content

Commit

Permalink
Convert indentation to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
ADmad committed Apr 18, 2015
1 parent e36bf98 commit aee9c77
Showing 1 changed file with 42 additions and 42 deletions.
84 changes: 42 additions & 42 deletions phpunit.xml.dist
@@ -1,36 +1,36 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit
colors="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./tests/bootstrap.php"
>
<php>
<ini name="memory_limit" value="-1"/>
<ini name="apc.enable_cli" value="1"/>
</php>
colors="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./tests/bootstrap.php"
>
<php>
<ini name="memory_limit" value="-1"/>
<ini name="apc.enable_cli" value="1"/>
</php>

<testsuites>
<testsuite name="CakePHP Test Suite">
<directory>./tests/TestCase/</directory>
<!-- Excludes are required in order to let DatabaseSuite decorate the tests -->
<exclude>./tests/TestCase/Database/</exclude>
<exclude>./tests/TestCase/ORM/</exclude>
</testsuite>
<testsuite name="Database Test Suite">
<file>./tests/TestCase/DatabaseSuite.php</file>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="CakePHP Test Suite">
<directory>./tests/TestCase/</directory>
<!-- Excludes are required in order to let DatabaseSuite decorate the tests -->
<exclude>./tests/TestCase/Database/</exclude>
<exclude>./tests/TestCase/ORM/</exclude>
</testsuite>
<testsuite name="Database Test Suite">
<file>./tests/TestCase/DatabaseSuite.php</file>
</testsuite>
</testsuites>

<listeners>
<listener class="\Cake\TestSuite\Fixture\FixtureInjector" file="./src/TestSuite/Fixture/FixtureInjector.php">
<arguments>
<object class="\Cake\TestSuite\Fixture\FixtureManager" />
</arguments>
</listener>
</listeners>
<listeners>
<listener class="\Cake\TestSuite\Fixture\FixtureInjector" file="./src/TestSuite/Fixture/FixtureInjector.php">
<arguments>
<object class="\Cake\TestSuite\Fixture\FixtureManager" />
</arguments>
</listener>
</listeners>

<!-- Prevent coverage reports from looking in tests, vendors, config folders -->
<filter>
Expand All @@ -45,18 +45,18 @@
</blacklist>
</filter>

<php>
<!-- SQLite
<env name="db_dsn" value="sqlite:///:memory:"/>
-->
<!-- Postgres
<env name="db_dsn" value="postgres://localhost/cake_test"/>
-->
<!-- Mysql
<env name="db_dsn" value="mysql://localhost/cake_test"/>
-->
<!-- SQL Server
<env name="db_dsn" value="sqlserver://localhost/cake_test"/>
-->
</php>
<php>
<!-- SQLite
<env name="db_dsn" value="sqlite:///:memory:"/>
-->
<!-- Postgres
<env name="db_dsn" value="postgres://localhost/cake_test"/>
-->
<!-- Mysql
<env name="db_dsn" value="mysql://localhost/cake_test"/>
-->
<!-- SQL Server
<env name="db_dsn" value="sqlserver://localhost/cake_test"/>
-->
</php>
</phpunit>

0 comments on commit aee9c77

Please sign in to comment.