-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathphpunit.xml.dist
20 lines (20 loc) · 911 Bytes
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<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.4/phpunit.xsd" cacheDirectory=".phpunit.cache">
<!-- Add any additional test suites you want to run here -->
<testsuites>
<testsuite name="All Tests">
<file>./tests/TestCase/Model/Table/PostsTableTest.php</file>
<file>./tests/TestCase/Validation/ContentsFileValidationTest.php</file>
</testsuite>
<!-- Add plugin test suites here. -->
</testsuites>
<!-- Setup a listener for fixtures -->
<php>
<!-- Postgres
<env name="db_dsn" value="postgres://root@localhost/cake_test_db"/>
-->
<!-- Mysql
<env name="db_dsn" value="mysql://root@localhost/cake_test_db"/>
-->
</php>
</phpunit>