class RemoveOrderTagActionTest extends TestCase
{ private MockObject&EntityRepository
$repository;
private RemoveOrderTagAction
$action;
private MockObject&StorableFlow
$flow;
protected function setUp(): void
{ $this->repository =
$this->
createMock(EntityRepository::
class);
$this->action =
new RemoveOrderTagAction($this->repository
);
$this->flow =
$this->
createMock(StorableFlow::
class);
} public function testRequirements(): void
{ static::
assertSame( [OrderAware::
class],
$this->action->
requirements() );
}