Skip to content
Snippets Groups Projects
Commit c4866ed1 authored by Reiter, Christoph's avatar Reiter, Christoph :snake:
Browse files

Move to phpunit9

We require php7.3 now
parent 02e8cf37
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ parameters: ...@@ -8,7 +8,7 @@ parameters:
- src - src
- tests - tests
bootstrapFiles: bootstrapFiles:
- bin/.phpunit/phpunit-8-0/vendor/autoload.php - bin/.phpunit/phpunit-9-0/vendor/autoload.php
excludes_analyse: excludes_analyse:
- tests/bootstrap.php - tests/bootstrap.php
- src/Swagger/DocumentationNormalizer.php - src/Swagger/DocumentationNormalizer.php
......
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html --> <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="tests/bootstrap.php">
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd" <coverage>
backupGlobals="false" <include>
colors="true" <directory>src</directory>
bootstrap="tests/bootstrap.php" <directory>tests</directory>
> </include>
<php> </coverage>
<ini name="error_reporting" value="-1" /> <php>
<server name="APP_ENV" value="test" force="true" /> <ini name="error_reporting" value="-1"/>
<server name="KERNEL_CLASS" value="App\Kernel" /> <server name="APP_ENV" value="test" force="true"/>
<server name="SHELL_VERBOSITY" value="-1" /> <server name="KERNEL_CLASS" value="App\Kernel"/>
<server name="SYMFONY_PHPUNIT_REMOVE" value="" /> <server name="SHELL_VERBOSITY" value="-1"/>
<server name="SYMFONY_PHPUNIT_VERSION" value="8" /> <server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
</php> <server name="SYMFONY_PHPUNIT_VERSION" value="9"/>
</php>
<testsuites> <testsuites>
<testsuite name="Project Test Suite"> <testsuite name="Project Test Suite">
<directory>tests</directory> <directory>tests</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<listeners>
<filter> <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
<whitelist> </listeners>
<directory>src</directory>
<directory>tests</directory>
</whitelist>
</filter>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
</phpunit> </phpunit>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment