IndexTest.php 411 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Test class for \Magento\Catalog\Controller\Index.
  8. */
  9. namespace Magento\Catalog\Controller;
  10. class IndexTest extends \Magento\TestFramework\TestCase\AbstractController
  11. {
  12. public function testIndexAction()
  13. {
  14. $this->dispatch('catalog/index');
  15. $this->assertRedirect();
  16. }
  17. }