Skip to content

Commit

Permalink
Fix phpunit.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
o0h committed Feb 27, 2018
1 parent 3d407a6 commit 894e48d
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions phpunit.xml
Expand Up @@ -8,52 +8,17 @@
bootstrap="./tests/bootstrap.php" bootstrap="./tests/bootstrap.php"
backupGlobals="true" backupGlobals="true"
> >
<php>
<ini name="memory_limit" value="-1"/>
<ini name="apc.enable_cli" value="1"/>
</php>


<testsuites> <testsuites>
<testsuite name="cakephp"> <testsuite name="cakephp">
<directory>./tests/TestCase/</directory> <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">
<file>./tests/TestCase/DatabaseSuite.php</file>
</testsuite> </testsuite>
</testsuites> </testsuites>


<!--
<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 --> <!-- Prevent coverage reports from looking in tests, vendors, config folders -->
<filter> <filter>
<whitelist> <whitelist>
<directory suffix=".php">./src/</directory> <directory suffix=".php">./src/</directory>
</whitelist> </whitelist>
</filter> </filter>

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

0 comments on commit 894e48d

Please sign in to comment.