-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathphpunit.xml.dist
62 lines (58 loc) · 2.42 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ __ ___ ____ _ ___ _ __
~ / |/ /_ __/ / /_(_)___/ (_)___ ___ ___ ____ _____(_)___ ____ ____ _/ /
~ / /|_/ / / / / / __/ / __ / / __ `__ \/ _ \/ __ \/ ___/ / __ \/ __ \ / __ `/ /
~ / / / / /_/ / / /_/ / /_/ / / / / / / / __/ / / (__ ) / /_/ / / / // /_/ / /
~ /_/ /_/\__,_/_/\__/_/\__,_/_/_/ /_/ /_/\___/_/ /_/____/_/\____/_/ /_(_)__,_/_/
~
~ CakePHPify : CakePHP Plugin for Shopify API Authentication
~ Copyright (c) Multidimension.al (http://multidimension.al)
~ Github : https://github.com/multidimension-al/cakephpify
~
~ Licensed under The MIT License
~ For full copyright and license information, please see the LICENSE file
~ Redistributions of files must retain the above copyright notice.
~
~ @copyright Copyright © 2016-2017 Multidimension.al (http://multidimension.al)
~ @link https://github.com/multidimension-al/cakephpify CakePHPify Github
~ @license http://www.opensource.org/licenses/mit-license.php MIT License
-->
<phpunit
colors="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./vendor/multidimensional/cakephpify/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="App Test Suite">
<directory>./tests/TestCase</directory>
</testsuite>
<!-- Add plugin test suites here. -->
<testsuite name="Cakephpify Tests">
<directory>./vendor/multidimensional/cakephpify/tests/TestCase</directory>
</testsuite>
</testsuites>
<!-- Setup a listener for fixtures -->
<listeners>
<listener
class="\Cake\TestSuite\Fixture\FixtureInjector"
file="./vendor/cakephp/cakephp/src/TestSuite/Fixture/FixtureInjector.php">
<arguments>
<object class="\Cake\TestSuite\Fixture\FixtureManager" />
</arguments>
</listener>
</listeners>
<!-- Add a filter to make sure we don't count vendors and Tests in the coverage report -->
<filter>
<whitelist>
<directory suffix=".php">./vendor/multidimensional/cakephpify/src/</directory>
</whitelist>
</filter>
</phpunit>