$this->orderServiceMock,
$this->paymentServiceMock,
$this->offcanvasCartPageLoaderMock,
$this->configMock,
$this->logoutRouteMock,
$this->cartLoadRouteMock
);
} public function testGetCart(): void
{ $cart =
new CheckoutCartPage();
$cart->
setCart(new Cart(Uuid::
randomHex()));
$this->cartPageLoaderMock->
method('load'
)->
willReturn( $cart );
$response =
$this->controller->
cartPage(new Request(),
$this->
createMock(SalesChannelContext::
class));
static::
assertEquals(new Response(),
$response);
} public function testGetCartRedirectNotOnNoErrors(): void
{