replace PHPUnit annotations with attributes (#5608)
This commit is contained in:
@@ -10,13 +10,13 @@
|
||||
namespace App\Tests\Command;
|
||||
|
||||
use App\Command\ReloadCommand;
|
||||
use PHPUnit\Framework\Attributes\CoversClass;
|
||||
use PHPUnit\Framework\Attributes\Group;
|
||||
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
||||
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
||||
|
||||
/**
|
||||
* @covers \App\Command\ReloadCommand
|
||||
* @group integration
|
||||
*/
|
||||
#[CoversClass(ReloadCommand::class)]
|
||||
#[Group('integration')]
|
||||
class ReloadCommandTest extends KernelTestCase
|
||||
{
|
||||
protected Application $application;
|
||||
|
||||
Reference in New Issue
Block a user