-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* NTR: add monolog channel * NTR: update lock file * NTR: fix tests * NTR: fix path * NTR: fix command * NTR: fix command * NTR: test integration tets * NTR: test pipeline * NTR: fix * NTR: fix pipeline * NTR: try with composer * NTR: add phpunit * NTR: remove integration tests * NTR: fix pipeline * NTR: CS fix --------- Co-authored-by: Vitalij Mik <[email protected]>
- Loading branch information
1 parent
de914c0
commit de77c58
Showing
52 changed files
with
870 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" | ||
bootstrap="./vendor/autoload.php" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd" | ||
bootstrap="./tests/bootstrap/index.php" | ||
cacheResult="false" | ||
colors="true" | ||
executionOrder="random" | ||
resolveDependencies="true" | ||
> | ||
<php> | ||
<ini name="error_reporting" value="-1"/> | ||
<server name="KERNEL_CLASS" value="Shopware\Core\Kernel"/> | ||
<env name="APP_ENV" value="test"/> | ||
<env name="APP_DEBUG" value="1"/> | ||
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak"/> | ||
</php> | ||
|
||
<testsuites> | ||
<testsuite name="MolliePayments Tests"> | ||
<testsuite name="unit"> | ||
<directory>./tests/PHPUnit</directory> | ||
<directory>./tests/Unit</directory> | ||
</testsuite> | ||
<testsuite name="integration"> | ||
<directory>./tests/Integration</directory> | ||
</testsuite> | ||
</testsuites> | ||
|
||
<coverage> | ||
<include> | ||
<directory>./src</directory> | ||
<directory suffix=".php">./src</directory> | ||
<directory suffix=".php">./shopware</directory> | ||
</include> | ||
</coverage> | ||
|
||
|
||
</phpunit> |
Oops, something went wrong.