Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SharedTest.php
Go to the documentation of this file.
1 <?php
8 
10 {
15  public function testAllcartAction()
16  {
17  $this->getRequest()->setParam('code', 'fixture_unique_code');
18  $this->dispatch('wishlist/shared/allcart');
19 
21  $cart = $this->_objectManager->get(\Magento\Checkout\Model\Cart::class);
22  $quoteCount = $cart->getQuote()->getItemsCollection()->count();
23 
24  $this->assertEquals(1, $quoteCount);
25  }
26 }