|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="vendor/autoload.php"> |
3 |
| - <testsuites> |
4 |
| - <testsuite name="Package Test Suite"> |
5 |
| - <directory suffix=".php">./tests/integration</directory> |
6 |
| - </testsuite> |
7 |
| - </testsuites> |
8 |
| - <filter> |
9 |
| - <whitelist> |
10 |
| - <directory>./src</directory> |
11 |
| - <exclude> |
12 |
| - <directory>./build</directory> |
13 |
| - <directory>./src/migrations</directory> |
14 |
| - <directory>./src/config</directory> |
15 |
| - <directory>./src/lang</directory> |
16 |
| - <directory>./src/views</directory> |
17 |
| - <directory>./composer</directory> |
18 |
| - <directory>./tests</directory> |
19 |
| - <directory>./travis</directory> |
20 |
| - <directory>./vendor</directory> |
21 |
| - <directory>./stubs</directory> |
22 |
| - <directory>./seeds</directory> |
23 |
| - <file>./src/OAuth2ServerServiceProvider.php</file> |
24 |
| - <file>./src/Repositories/FluentAdapter.php</file> |
25 |
| - </exclude> |
26 |
| - </whitelist> |
27 |
| - </filter> |
28 |
| - <logging> |
29 |
| - <log type="coverage-php" target="tmp/integration-coverage.cov"/> |
30 |
| - <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/> |
31 |
| - </logging> |
| 2 | +<phpunit backupGlobals="false" |
| 3 | + backupStaticAttributes="false" |
| 4 | + beStrictAboutTestsThatDoNotTestAnything="true" |
| 5 | + beStrictAboutOutputDuringTests="true" |
| 6 | + bootstrap="vendor/autoload.php" |
| 7 | + colors="true" |
| 8 | + convertErrorsToExceptions="true" |
| 9 | + convertNoticesToExceptions="true" |
| 10 | + convertWarningsToExceptions="true" |
| 11 | + processIsolation="false" |
| 12 | + stopOnError="false" |
| 13 | + stopOnFailure="false" |
| 14 | + verbose="true" |
| 15 | +> |
| 16 | + <testsuites> |
| 17 | + <testsuite name="OAuth 2.0 Laravel Test Suite"> |
| 18 | + <directory suffix="Test.php">./tests</directory> |
| 19 | + </testsuite> |
| 20 | + </testsuites> |
| 21 | + <filter> |
| 22 | + <whitelist processUncoveredFilesFromWhitelist="true"> |
| 23 | + <directory suffix=".php">./src</directory> |
| 24 | + </whitelist> |
| 25 | + </filter> |
32 | 26 | </phpunit>
|
| 27 | + |
0 commit comments