Skip to content

Commit 5ac5683

Browse files
soumyaudobooth
andauthored
MQE-1704: MFTF Compatibility with PHPUnit 9 (#657)
* MQE-1704: MFTF Compatibility with PHPUnit 8 Upgraded PhpUnit + Codeception * MQE-1704: MFTF Compatibility with PHPUnit 8 Added codeception modeule-* dependencies to fix functional tests * MQE-1704: MFTF Compatibility with PHPUnit 8 fixed static checks * MQE-1704: MFTF Compatibility with PHPUnit 8 Fixed phpmd error * MQE-1704: MFTF Compatibility with PHPUnit 8 Removed pauseExecution to use pause * MQE-1704: MFTF Compatibility with PHPUnit 8 Override switchToIFrame to include find by ID. * MQE-2040: Unable to run suites from standalone MFTF fixed static checks, fixed for MagentoAllureAdapter * MQE-1704: MFTF Compatibility with PHPUnit 9 Updated to PHPUnit 9 and fixed unit tests * MQE-1704: MFTF Compatibility with PHPUnit 9 remove PHP 7.2 support * MQE-1704: MFTF Compatibility with PHPUnit 9 added Pause to MagentoWebDriver.php for step generation in console/allure * MQE-2078: [PHPUnit 9] assertContains and assertNotContains breaking c… (#673) * MQE-2078: [PHPUnit 9] assertContains and assertNotContains breaking changes added new actions assertStringContainsString assertStringContainsStringIgnoringCase * MQE-2078: [PHPUnit 9] assertContains and assertNotContains breaking changes Added additional documentation for assertContains * Grammar fixes Co-authored-by: Donald Booth <dobooth@adobe.com> Co-authored-by: Donald Booth <dobooth@adobe.com>
1 parent 8fb1025 commit 5ac5683

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+885
-570
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
language: php
22
php:
3-
- 7.2
43
- 7.3
54
services:
65
- docker

composer.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,17 @@
99
"sort-packages": true
1010
},
1111
"require": {
12-
"php": "~7.2.0||~7.3.0",
12+
"php": "^7.3",
1313
"ext-curl": "*",
1414
"ext-dom": "*",
1515
"ext-json": "*",
1616
"ext-openssl": "*",
17-
"allure-framework/allure-codeception": "~1.3.0",
17+
"allure-framework/allure-codeception": "~1.4.0",
1818
"aws/aws-sdk-php": "^3.132",
19-
"codeception/codeception": "~2.4.5",
19+
"codeception/codeception": "~4.1.4",
20+
"codeception/module-asserts": "^1.1",
21+
"codeception/module-sequence": "^1.0",
22+
"codeception/module-webdriver": "^1.0",
2023
"composer/composer": "^1.6",
2124
"csharpru/vault-php": "~3.5.3",
2225
"csharpru/vault-php-guzzle6-transport": "^2.0",
@@ -31,14 +34,14 @@
3134
},
3235
"require-dev": {
3336
"squizlabs/php_codesniffer": "~3.2",
34-
"sebastian/phpcpd": "~3.0 || ~4.0",
37+
"sebastian/phpcpd": "~4.0||~5.0",
3538
"brainmaestro/composer-git-hooks": "^2.3.1",
3639
"doctrine/cache": "<1.7.0",
3740
"codeception/aspect-mock": "^3.0",
3841
"goaop/framework": "2.2.0",
3942
"codacy/coverage": "^1.4",
4043
"phpmd/phpmd": "^2.6.0",
41-
"phpunit/phpunit": "~6.5.0 || ~7.0.0",
44+
"phpunit/phpunit": "~9.0.0",
4245
"rregeer/phpunit-coverage-check": "^0.1.4",
4346
"php-coveralls/php-coveralls": "^1.0",
4447
"symfony/stopwatch": "~3.4.6"

0 commit comments

Comments
 (0)