MassRemoveTest.php 477 B

12345678910111213141516
  1. <?php
  2. /***
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\AdminNotification\Controller\Adminhtml\Notification;
  7. class MassRemoveTest extends \Magento\TestFramework\TestCase\AbstractBackendController
  8. {
  9. public function setUp()
  10. {
  11. $this->resource = 'Magento_AdminNotification::adminnotification_remove';
  12. $this->uri = 'backend/admin/notification/massremove';
  13. parent::setUp();
  14. }
  15. }