|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | 2 | <phpunit |
3 | | - colors="true" |
4 | | - processIsolation="false" |
5 | | - stopOnFailure="false" |
6 | | - syntaxCheck="false" |
7 | | - bootstrap="./tests/bootstrap.php" |
8 | | - > |
9 | | - <php> |
10 | | - <ini name="memory_limit" value="-1"/> |
11 | | - </php> |
| 3 | + colors="true" |
| 4 | + processIsolation="false" |
| 5 | + stopOnFailure="false" |
| 6 | + syntaxCheck="false" |
| 7 | + bootstrap="./tests/bootstrap.php" |
| 8 | + > |
| 9 | + <php> |
| 10 | + <ini name="memory_limit" value="-1"/> |
| 11 | + </php> |
12 | 12 |
|
13 | | - <!-- Add any additional test suites you want to run here --> |
14 | | - <testsuites> |
15 | | - <testsuite name="CakePHP JWT Auth Tests"> |
16 | | - <directory>./tests/TestCase</directory> |
17 | | - </testsuite> |
18 | | - <!-- Add plugin test suites here. --> |
19 | | - </testsuites> |
| 13 | + <!-- Add any additional test suites you want to run here --> |
| 14 | + <testsuites> |
| 15 | + <testsuite name="CakePHP JWT Auth Tests"> |
| 16 | + <directory>./tests/TestCase</directory> |
| 17 | + </testsuite> |
| 18 | + <!-- Add plugin test suites here. --> |
| 19 | + </testsuites> |
20 | 20 |
|
21 | | - <!-- Setup a listener for fixtures --> |
22 | | - <listeners> |
23 | | - <listener |
24 | | - class="\Cake\TestSuite\Fixture\FixtureInjector" |
25 | | - file="./vendor/cakephp/cakephp/src/TestSuite/Fixture/FixtureInjector.php"> |
26 | | - <arguments> |
27 | | - <object class="\Cake\TestSuite\Fixture\FixtureManager" /> |
28 | | - </arguments> |
29 | | - </listener> |
30 | | - </listeners> |
| 21 | + <!-- Setup a listener for fixtures --> |
| 22 | + <listeners> |
| 23 | + <listener |
| 24 | + class="\Cake\TestSuite\Fixture\FixtureInjector" |
| 25 | + file="./vendor/cakephp/cakephp/src/TestSuite/Fixture/FixtureInjector.php"> |
| 26 | + <arguments> |
| 27 | + <object class="\Cake\TestSuite\Fixture\FixtureManager" /> |
| 28 | + </arguments> |
| 29 | + </listener> |
| 30 | + </listeners> |
31 | 31 |
|
32 | | - <filter> |
33 | | - <blacklist> |
34 | | - <directory suffix=".php">./vendor/</directory> |
35 | | - <directory suffix=".ctp">./vendor/</directory> |
36 | | - <directory suffix=".php">./tests/</directory> |
37 | | - <directory suffix=".ctp">./tests/</directory> |
38 | | - </blacklist> |
39 | | - </filter> |
| 32 | + <filter> |
| 33 | + <whitelist> |
| 34 | + <directory suffix=".php">./src/</directory> |
| 35 | + <directory suffix=".ctp">./src/</directory> |
| 36 | + </whitelist> |
| 37 | + </filter> |
40 | 38 | </phpunit> |
0 commit comments