mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-09-20 00:16:12 +02:00

[TASK] Make all test cases final (#801)

Resolves: #797
This commit is contained in:
Daniel Siepmann 2023-04-06 16:34:15 +02:00 committed by GitHub
parent 0e85116d75
commit 68372cc850
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@ use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
* @covers \TTN\Tea\Domain\Repository\Product\TeaRepository
* @covers \TTN\Tea\Domain\Model\Product\Tea
*/
class TeaRepositoryTest extends FunctionalTestCase
final class TeaRepositoryTest extends FunctionalTestCase
{
protected array $testExtensionsToLoad = ['typo3conf/ext/tea'];

View file

@ -19,7 +19,7 @@ use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
/**
* @covers \TTN\Tea\Controller\TeaController
*/
class TeaControllerTest extends UnitTestCase
final class TeaControllerTest extends UnitTestCase
{
/**
* @var TeaController&MockObject&AccessibleObjectInterface

View file

@ -12,7 +12,7 @@ use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
/**
* @covers \TTN\Tea\Domain\Model\Product\Tea
*/
class TeaTest extends UnitTestCase
final class TeaTest extends UnitTestCase
{
private Tea $subject;

View file

@ -12,7 +12,7 @@ use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
/**
* @covers \TTN\Tea\Domain\Repository\Product\TeaRepository
*/
class TeaRepositoryTest extends UnitTestCase
final class TeaRepositoryTest extends UnitTestCase
{
private TeaRepository $subject;