dist
1 year ago
includes
4 weeks ago
locale
2 months ago
res
1 year ago
src
4 weeks ago
templates
4 weeks ago
vendor-bin
3 years ago
Makefile
5 years ago
README.md
5 years ago
installer.php
4 weeks ago
loader.php
4 weeks ago
phpcs.compatibility.xml
1 year ago
phpcs.xml
5 years ago
phpunit.xml
10 months ago
repositories.xml
3 years ago
webpack.config.js
1 year ago
phpunit.xml
28 lines
| 1 | <?xml version="1.0"?> |
| 2 | <phpunit |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | bootstrap="./tests/phpunit/bootstrap.php" |
| 5 | backupGlobals="false" |
| 6 | colors="true" |
| 7 | convertErrorsToExceptions="true" |
| 8 | convertNoticesToExceptions="true" |
| 9 | convertWarningsToExceptions="true" |
| 10 | beStrictAboutTestsThatDoNotTestAnything="false" |
| 11 | xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" |
| 12 | > |
| 13 | <coverage> |
| 14 | <include> |
| 15 | <directory suffix=".php">./</directory> |
| 16 | </include> |
| 17 | <exclude> |
| 18 | <directory>./locale</directory> |
| 19 | <directory>./tests</directory> |
| 20 | <directory>./vendor</directory> |
| 21 | </exclude> |
| 22 | </coverage> |
| 23 | <testsuites> |
| 24 | <testsuite name="installer-tests"> |
| 25 | <directory suffix=".php">./tests/phpunit/tests/</directory> |
| 26 | </testsuite> |
| 27 | </testsuites> |
| 28 | </phpunit> |