$this->
createMock(LoggerInterface::
class),
$this->
createMock(ActionButtonResponseFactory::
class),
$this->
createMock(ShopIdProvider::
class),
$this->
createMock(RouterInterface::
class),
$requestStack,
$this->
createMock(KernelInterface::
class) );
static::
expectException(AppException::
class);
static::
expectExceptionMessage('connection problems'
);
$appAction =
new AppAction('https://example.com', 'https://localhost', '1.0.0', 'action-id', 'label',
[Uuid::
randomHex()], 'GET', 'asd', '123123123'
);
$executor->
execute( $appAction,
Context::
createDefaultContext() );
}}