46 lines
1.3 KiB
Twig
46 lines
1.3 KiB
Twig
{#
|
|
/**
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* For full copyright and license information, please see the LICENSE.txt
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
|
* @since 2.0.0
|
|
* @license https://www.opensource.org/licenses/mit-license.php MIT License
|
|
*/
|
|
#}
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
colors="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
<php>
|
|
<ini name="memory_limit" value="-1"/>
|
|
<ini name="apc.enable_cli" value="1"/>
|
|
</php>
|
|
|
|
<!-- Add any additional test suites you want to run here -->
|
|
<testsuites>
|
|
<testsuite name="{{ plugin }}">
|
|
<directory>tests/TestCase/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<!-- Setup fixture extension -->
|
|
<extensions>
|
|
<extension class="Cake\TestSuite\Fixture\PHPUnitExtension"/>
|
|
</extensions>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">src/</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|