|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | - |
3 | | - |
4 | | -<phpunit backupGlobals="false" |
5 | | - backupStaticAttributes="false" |
6 | | - bootstrap="./tests/bootstrap.php" |
7 | | - colors="true" |
8 | | - convertErrorsToExceptions="true" |
9 | | - convertNoticesToExceptions="true" |
10 | | - convertWarningsToExceptions="true" |
11 | | - processIsolation="false" |
12 | | - stopOnFailure="false"> |
13 | | - |
14 | | - <php> |
15 | | - <!-- Specify the value of your BigBlueButton secret --> |
16 | | - <env name="BBB_SECRET" value="8cd8ef52e8e101574e400365b55e11a6"/> |
17 | | - <!-- Specify the Server Base URL of your BigBlueButton --> |
18 | | - <env name="BBB_SERVER_BASE_URL" value="https://test-install.blindsidenetworks.com/bigbluebutton/"/> |
19 | | - </php> |
20 | | - |
21 | | - <logging> |
22 | | - <log type="coverage-html" target="./coverage"/> |
23 | | - </logging> |
24 | | - |
25 | | - <filter> |
26 | | - <whitelist processUncoveredFilesFromWhitelist="true"> |
27 | | - <directory suffix=".php">./src/</directory> |
28 | | - </whitelist> |
29 | | - </filter> |
30 | | - |
31 | | - <testsuites> |
32 | | - <testsuite name="BigBlueButton test suit"> |
33 | | - <directory>./tests/</directory> |
34 | | - </testsuite> |
35 | | - </testsuites> |
36 | | - |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" backupStaticAttributes="false" bootstrap="./tests/bootstrap.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> |
| 3 | + <coverage processUncoveredFiles="true"> |
| 4 | + <include> |
| 5 | + <directory suffix=".php">./src/</directory> |
| 6 | + </include> |
| 7 | + </coverage> |
| 8 | + <php> |
| 9 | + <env name="XDEBUG_MODE" value="coverage"/> |
| 10 | + <!-- Specify the value of your BigBlueButton secret --> |
| 11 | + <env name="BBB_SECRET" value="8cd8ef52e8e101574e400365b55e11a6"/> |
| 12 | + <!-- Specify the Server Base URL of your BigBlueButton --> |
| 13 | + <env name="BBB_SERVER_BASE_URL" value="https://test-install.blindsidenetworks.com/bigbluebutton/"/> |
| 14 | + </php> |
| 15 | + <testsuites> |
| 16 | + <testsuite name="BigBlueButton test suit"> |
| 17 | + <directory>./tests/</directory> |
| 18 | + </testsuite> |
| 19 | + </testsuites> |
37 | 20 | </phpunit> |
0 commit comments