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