DesignTest.php 575 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Backend\Controller\Adminhtml\System;
  7. /**
  8. * @magentoAppArea adminhtml
  9. */
  10. class DesignTest extends \Magento\TestFramework\TestCase\AbstractBackendController
  11. {
  12. /**
  13. * @covers \Magento\Backend\App\Action::_addLeft
  14. */
  15. public function testEditAction()
  16. {
  17. $this->dispatch('backend/admin/system_design/edit');
  18. $this->assertStringMatchesFormat('%A<a%Aid="design_tabs_general"%A', $this->getResponse()->getBody());
  19. }
  20. }