diff --git a/composer.json b/composer.json index 122c5f2257f5ccaede19ecb67497c967b9f1a89e..f16f11173922297c7ccdaf9304f114dac751a80c 100644 --- a/composer.json +++ b/composer.json @@ -79,7 +79,7 @@ "phpspec/prophecy": "^1.7.5", "rector/rector": "^0.5.0", "typo3/cms-styleguide": "~10.0.2", - "typo3/testing-framework": "~6.0.0" + "typo3/testing-framework": "~6.1.0" }, "suggest": { "ext-gd": "GDlib/Freetype is required for building images with text (GIFBUILDER) and can also be used to scale images", diff --git a/composer.lock b/composer.lock index 2817fa1abdbd311d26c1a979dfe42cec497fe885..55c6a5c0fab3fc897bbff2ff4799c100a2c5cb94 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "ad3295bdf8c8700d9be0f2e05563697e", + "content-hash": "2c2043fa833ab265530464d5ab0aca71", "packages": [ { "name": "cogpowered/finediff", @@ -7934,21 +7934,21 @@ }, { "name": "typo3/testing-framework", - "version": "6.0.0", + "version": "6.1.0", "source": { "type": "git", "url": "https://github.com/TYPO3/testing-framework.git", - "reference": "c74a87a2037fca3eaaebeaa886a874cc97fce997" + "reference": "89e4e0dd20ba4e4f4423d16ce63d204afbc73c09" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/TYPO3/testing-framework/zipball/c74a87a2037fca3eaaebeaa886a874cc97fce997", - "reference": "c74a87a2037fca3eaaebeaa886a874cc97fce997", + "url": "https://api.github.com/repos/TYPO3/testing-framework/zipball/89e4e0dd20ba4e4f4423d16ce63d204afbc73c09", + "reference": "89e4e0dd20ba4e4f4423d16ce63d204afbc73c09", "shasum": "" }, "require": { "mikey179/vfsstream": "~1.6.8", - "phpunit/phpunit": "^8.3", + "phpunit/phpunit": "^8.4", "typo3/cms-backend": "10.*.*@dev", "typo3/cms-core": "10.*.*@dev", "typo3/cms-extbase": "10.*.*@dev", @@ -7990,7 +7990,7 @@ "tests", "typo3" ], - "time": "2019-12-02T16:43:08+00:00" + "time": "2019-12-03T08:17:45+00:00" } ], "aliases": [], diff --git a/typo3/sysext/core/composer.json b/typo3/sysext/core/composer.json index d554cec6df1850fd4997d11114f3c10a57bd29c7..ffb56a88c573df6531eb2c471d57663dfd5310e6 100644 --- a/typo3/sysext/core/composer.json +++ b/typo3/sysext/core/composer.json @@ -57,7 +57,7 @@ "friendsofphp/php-cs-fixer": "^2.16.1", "phpspec/prophecy": "^1.7.5", "typo3/cms-styleguide": "~10.0.2", - "typo3/testing-framework": "~6.0.0" + "typo3/testing-framework": "~6.1.0" }, "suggest": { "ext-fileinfo": "Used for proper file type detection in the file abstraction layer", diff --git a/typo3/sysext/fluid/Tests/Unit/Core/Rendering/RenderingContextTest.php b/typo3/sysext/fluid/Tests/Unit/Core/Rendering/RenderingContextTest.php index 6db1b86f317711fc79998160b0c78c0f805fe947..3b457ecc444a5e56b3c993762965c6fb3bb13ba0 100644 --- a/typo3/sysext/fluid/Tests/Unit/Core/Rendering/RenderingContextTest.php +++ b/typo3/sysext/fluid/Tests/Unit/Core/Rendering/RenderingContextTest.php @@ -37,7 +37,7 @@ class RenderingContextTest extends UnitTestCase { parent::setUp(); $this->renderingContext = $this->getMockBuilder(RenderingContext::class) - ->setMethods(['dummy']) + ->addMethods(['dummy']) ->disableOriginalConstructor() ->getMock(); } @@ -48,7 +48,7 @@ class RenderingContextTest extends UnitTestCase public function setControllerContextWithSubpackageKeySetsExpectedControllerContext() { $renderingContext = $this->getMockBuilder(RenderingContext::class) - ->setMethods(['setControllerAction', 'setControllerName']) + ->onlyMethods(['setControllerAction', 'setControllerName']) ->disableOriginalConstructor() ->getMock(); $request = $this->getMockBuilder(Request::class) @@ -106,7 +106,7 @@ class RenderingContextTest extends UnitTestCase public function setControllerActionProcessesInputCorrectly($input, $expected) { $subject = $this->getMockBuilder(RenderingContext::class) - ->setMethods(['dummy']) + ->addMethods(['dummy']) ->disableOriginalConstructor() ->getMock(); $request = $this->getMockBuilder(Request::class)->setMethods(['setControllerActionName'])->getMock(); diff --git a/typo3/sysext/fluid/Tests/Unit/Core/Widget/AbstractWidgetViewHelperTest.php b/typo3/sysext/fluid/Tests/Unit/Core/Widget/AbstractWidgetViewHelperTest.php index 4be10972801a48f2fac49b156962e4917f3675be..4e69f282f480a090b9d65cb4926b0b440d564b2a 100644 --- a/typo3/sysext/fluid/Tests/Unit/Core/Widget/AbstractWidgetViewHelperTest.php +++ b/typo3/sysext/fluid/Tests/Unit/Core/Widget/AbstractWidgetViewHelperTest.php @@ -95,7 +95,7 @@ class AbstractWidgetViewHelperTest extends UnitTestCase $this->controllerContext = $this->createMock(ControllerContext::class); $this->controllerContext->expects(self::any())->method('getRequest')->willReturn($this->request); $this->renderingContext = $this->getMockBuilder(RenderingContext::class) - ->setMethods(['getControllerContext']) + ->onlyMethods(['getControllerContext']) ->disableOriginalConstructor() ->getMock(); $this->renderingContext->expects(self::any())->method('getControllerContext')->willReturn($this->controllerContext); diff --git a/typo3/sysext/fluid/Tests/Unit/ViewHelpers/Link/PageViewHelperTest.php b/typo3/sysext/fluid/Tests/Unit/ViewHelpers/Link/PageViewHelperTest.php index ba539900ebaeb15697270b54b3aa0e8510a882b2..d790903c1d25ec14ced22a94580352be0e0324d7 100644 --- a/typo3/sysext/fluid/Tests/Unit/ViewHelpers/Link/PageViewHelperTest.php +++ b/typo3/sysext/fluid/Tests/Unit/ViewHelpers/Link/PageViewHelperTest.php @@ -62,7 +62,7 @@ class PageViewHelperTest extends ViewHelperBaseTestcase $this->controllerContext->expects(self::any())->method('getRequest')->willReturn($this->request->reveal()); $this->arguments = []; $this->renderingContext = $this->getMockBuilder(RenderingContext::class) - ->setMethods(['getControllerContext']) + ->onlyMethods(['getControllerContext']) ->disableOriginalConstructor() ->getMock(); $this->renderingContext->expects(self::any())->method('getControllerContext')->willReturn($this->controllerContext);