Skip to content

Commit ee4c298

Browse files
authored
Update phpunit.xml.dist
1 parent b2e58bd commit ee4c298

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

phpunit.xml.dist

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,30 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="./tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd">
3-
<coverage includeUncoveredFiles="true"/>
2+
<!--
3+
~ Copyright 2010 - 2018, Cake Development Corporation (https://www.cakedc.com)
4+
~
5+
~ Licensed under The MIT License
6+
~ Redistributions of files must retain the above copyright notice.
7+
~
8+
~ @copyright Copyright 2010 - 2018, Cake Development Corporation (https://www.cakedc.com)
9+
~ @license MIT License (http://www.opensource.org/licenses/mit-license.php)
10+
-->
11+
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" processIsolation="false" stopOnFailure="false" bootstrap="./tests/bootstrap.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.2/phpunit.xsd" cacheDirectory=".phpunit.cache">
12+
<coverage/>
413
<php>
514
<ini name="memory_limit" value="-1"/>
615
<ini name="apc.enable_cli" value="1"/>
7-
<env name="db_dsn" value="mysql://root2:root2@localhost/cake_test_db"/>
816
<env name="FIXTURE_SCHEMA_METADATA" value="./tests/schema.php"/>
917
</php>
1018
<!-- Add any additional test suites you want to run here -->
1119
<testsuites>
12-
<testsuite name="Api Test Suite">
20+
<testsuite name="Users Test Suite">
1321
<directory>./tests/TestCase</directory>
1422
</testsuite>
1523
</testsuites>
1624
<!-- Setup a listener for fixtures -->
1725
<extensions>
1826
<bootstrap class="Cake\TestSuite\Fixture\Extension\PHPUnitExtension"/>
1927
</extensions>
20-
<!-- Prevent coverage reports from looking in tests and vendors -->
2128
<source>
2229
<include>
2330
<directory suffix=".php">./src</directory>

0 commit comments

Comments
 (0)