IndexTest.php 559 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. *
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. namespace Magento\Integration\Test\Unit\Controller\Adminhtml\Integration;
  8. class IndexTest extends \Magento\Integration\Test\Unit\Controller\Adminhtml\IntegrationTest
  9. {
  10. public function testIndexAction()
  11. {
  12. $this->_verifyLoadAndRenderLayout();
  13. // renderLayout
  14. $this->_controller = $this->_createIntegrationController('Index');
  15. $result = $this->_controller->execute();
  16. $this->assertNull($result);
  17. }
  18. }