mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
feat: toHaveAttribute expectation
This commit is contained in:
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests\Fixtures\Arch\ToHaveAttribute\Attributes;
|
||||
|
||||
use Attribute;
|
||||
|
||||
#[Attribute()]
|
||||
class AsAttribute
|
||||
{
|
||||
|
||||
}
|
||||
@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests\Fixtures\Arch\ToHaveAttribute\HaveAttribute;
|
||||
|
||||
use Tests\Fixtures\Arch\ToHaveAttribute\Attributes\AsAttribute;
|
||||
|
||||
#[AsAttribute]
|
||||
class HaveAttributeClass
|
||||
{
|
||||
|
||||
}
|
||||
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests\Fixtures\Arch\ToHaveAttribute\NotHaveAttribute;
|
||||
|
||||
class NotHaveAttributeClass
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user