replace PHPUnit annotations with attributes (#5608)
This commit is contained in:
@@ -10,13 +10,13 @@
|
||||
namespace App\Tests\Reporting;
|
||||
|
||||
use App\Entity\User;
|
||||
use App\Reporting\AbstractUserList;
|
||||
use App\Reporting\DateByUser;
|
||||
use PHPUnit\Framework\Attributes\CoversClass;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
/**
|
||||
* @covers \App\Reporting\AbstractUserList
|
||||
* @covers \App\Reporting\DateByUser
|
||||
*/
|
||||
#[CoversClass(AbstractUserList::class)]
|
||||
#[CoversClass(DateByUser::class)]
|
||||
abstract class AbstractDateByUserTestCase extends TestCase
|
||||
{
|
||||
abstract protected function createSut(): DateByUser;
|
||||
|
||||
Reference in New Issue
Block a user