mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-19 23:56:13 +02:00

[CLEANUP] Remove code specific to TYPO3 9LTS (#367)

This commit is contained in:
Oliver Klee 2022-01-13 03:26:30 +01:00 committed by GitHub
parent 34eaf0cab1
commit 8520b55898
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,7 +5,6 @@ declare(strict_types=1);
namespace TTN\Tea\Tests\Functional\Controller;
use Nimut\TestingFramework\TestCase\FunctionalTestCase;
use TYPO3\CMS\Core\Utility\VersionNumberUtility;
/**
* @covers \TTN\Tea\Controller\TeaController
@ -32,8 +31,7 @@ class TeaControllerTest extends FunctionalTestCase
$this->setUpFrontendRootPage(
1,
[
'EXT:fluid_styled_content/Configuration/TypoScript/setup.'
. ($this->isTYPO3VersionAbove10() ? 'typoscript' : 'txt'),
'EXT:fluid_styled_content/Configuration/TypoScript/setup.typoscript',
'EXT:tea/Configuration/TypoScript/setup.typoscript',
'EXT:tea/Tests/Functional/Controller/Fixtures/Frontend/Basic.typoscript',
]
@ -50,12 +48,4 @@ class TeaControllerTest extends FunctionalTestCase
$teaTitle = 'Earl Grey';
self::assertStringContainsString($teaTitle, $responseContent);
}
/**
* @return bool
*/
protected function isTYPO3VersionAbove10(): bool
{
return VersionNumberUtility::convertVersionNumberToInteger(TYPO3_version) >= 10000000;
}
}