mirror of https://github.com/FriendsOfTYPO3/tea.git synced 2024-11-10 00:36:13 +01:00

[TASK] Always use @covers annotations in the tests (#298)

This commit is contained in:
Oliver Klee 2021-09-15 02:11:15 +02:00 committed by GitHub
parent 6e927a8656
commit ca9a8e4e15
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View file

@ -8,7 +8,7 @@ use Nimut\TestingFramework\TestCase\FunctionalTestCase;
use TYPO3\CMS\Core\Utility\VersionNumberUtility;
/**
* Test case.
* @covers \TTN\Tea\Controller\TeaController
*/
class TeaControllerTest extends FunctionalTestCase
{

View file

@ -13,7 +13,7 @@ use TYPO3\CMS\Extbase\Object\ObjectManager;
use TYPO3\CMS\Extbase\Persistence\Generic\PersistenceManager;
/**
* Test case.
* @covers \TTN\Tea\Domain\Repository\Product\TeaRepository
*/
class TeaRepositoryTest extends FunctionalTestCase
{

View file

@ -15,7 +15,7 @@ use TYPO3\CMS\Extbase\Persistence\QueryResultInterface;
use TYPO3\CMS\Fluid\View\TemplateView;
/**
* Test case.
* @covers \TTN\Tea\Controller\TeaController
*/
class TeaControllerTest extends UnitTestCase
{

View file

@ -10,7 +10,7 @@ use TYPO3\CMS\Extbase\Domain\Model\FileReference;
use TYPO3\CMS\Extbase\DomainObject\AbstractEntity;
/**
* Test case.
* @covers \TTN\Tea\Domain\Model\Product\Tea
*/
class TeaTest extends UnitTestCase
{

View file

@ -11,7 +11,7 @@ use TYPO3\CMS\Extbase\Object\ObjectManagerInterface;
use TYPO3\CMS\Extbase\Persistence\Repository;
/**
* Test case.
* @covers \TTN\Tea\Domain\Repository\Product\TeaRepository
*/
class TeaRepositoryTest extends UnitTestCase
{