Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.

[TASK] Update nimut/testing-framework (^5.1 => ^6.0) #89

Merged
merged 3 commits into from
Oct 22, 2021
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/.phpunit.result.cache
/composer.lock
/node_modules
/vendor
Expand Down
4 changes: 2 additions & 2 deletions Tests/Unit/Mail/MailMessageBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ final class MailMessageBuilderTest extends UnitTestCase
/**
* Set up this testcase
*/
protected function setUp()
protected function setUp(): void
{
if (!is_subclass_of(MailMessage::class, Email::class)) {
$this->markTestSkipped('Symfony mail only');
Expand All @@ -34,7 +34,7 @@ protected function setUp()
/**
* Tear down this testcase
*/
protected function tearDown()
protected function tearDown(): void
{
GeneralUtility::purgeInstances();
}
Expand Down
4 changes: 2 additions & 2 deletions Tests/Unit/Mail/SwiftmailerMailMessageBuilderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class SwiftmailerMailMessageBuilderTest extends UnitTestCase
/**
* Set up this testcase
*/
protected function setUp()
protected function setUp(): void
{
if (!is_subclass_of(MailMessage::class, \Swift_Message::class)) {
$this->markTestSkipped('Swiftmailer mail only');
Expand All @@ -33,7 +33,7 @@ protected function setUp()
/**
* Tear down this testcase
*/
protected function tearDown()
protected function tearDown(): void
{
GeneralUtility::purgeInstances();
}
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@
"codedungeon/phpunit-result-printer": "^0.31.0",
"ergebnis/composer-normalize": "^2.8",
"helmich/typo3-typoscript-lint": "^2.2",
"nimut/testing-framework": "^5.1",
"nimut/testing-framework": "^6.0",
"php-parallel-lint/php-console-highlighter": "^0.5.0",
"php-parallel-lint/php-parallel-lint": "^1.2",
"phpunit/phpunit": "^6.5",
"phpunit/phpunit": "^8.5",
"sclable/xml-lint": "^0.3.0",
"slevomat/coding-standard": "^7.0",
"squizlabs/php_codesniffer": "^3.0"
Expand Down