fix @covers

This commit is contained in:
Dennis Eichhorn 2020-10-09 00:20:25 +02:00
parent a1b2a88cde
commit fb242e680a
3 changed files with 12 additions and 0 deletions

View File

@ -24,6 +24,10 @@ use phpOMS\Utils\RnG\Text;
*/
class KanbanBoardMapperTest extends \PHPUnit\Framework\TestCase
{
/**
* @covers Modules\Kanban\Models\KanbanBoardMapper
* @group module
*/
public function testCRUD() : void
{
$board = new KanbanBoard();

View File

@ -23,6 +23,10 @@ use phpOMS\Utils\RnG\Text;
*/
class KanbanColumnMapperTest extends \PHPUnit\Framework\TestCase
{
/**
* @covers Modules\Kanban\Models\KanbanColumnMapper
* @group module
*/
public function testCRUD() : void
{
$column = new KanbanColumn();

View File

@ -24,6 +24,10 @@ use phpOMS\Utils\RnG\Text;
*/
class KanbanCardCommentMapperTest extends \PHPUnit\Framework\TestCase
{
/**
* @covers Modules\Kanban\Models\KanbanCardCommentMapper
* @group module
*/
public function testCRUD() : void
{
$comment = new KanbanCardComment();