Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions skeleton/extension/phpunit.integration.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="tests/integration/bootstrap.php"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
failOnWarning="true"
verbose="true">
<php>
<env name="KERNEL_CLASS" value="Ibexa\Tests\Integration\__BUNDLE_NAME__\TestKernel" />
<env name="SEARCH_ENGINE" value="legacy" />
<env name="DATABASE_URL" value="sqlite://i@i/var/test.db" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&amp;max[direct]=0&amp;verbose=0"/>
<ini name="intl.default_locale" value="en_US" />
</php>
<testsuites>
<testsuite name="integration">
<directory>tests/integration</directory>
</testsuite>
</testsuites>
<extensions>
<extension class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" />
</extensions>
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
</listeners>
</phpunit>
3 changes: 0 additions & 3 deletions skeleton/extension/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
<testsuite name="bundle">
<directory>tests/bundle</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/integration</directory>
</testsuite>
<testsuite name="lib">
<directory>tests/lib</directory>
</testsuite>
Expand Down
3 changes: 0 additions & 3 deletions skeleton/ibexa-ee/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
<testsuite name="bundle">
<directory>tests/bundle</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/integration</directory>
</testsuite>
<testsuite name="lib">
<directory>tests/lib</directory>
</testsuite>
Expand Down
3 changes: 0 additions & 3 deletions skeleton/ibexa-oss/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,6 @@
<testsuite name="bundle">
<directory>tests/bundle</directory>
</testsuite>
<testsuite name="integration">
<directory>tests/integration</directory>
</testsuite>
<testsuite name="lib">
<directory>tests/lib</directory>
</testsuite>
Expand Down
Loading