12345678910111213141516 |
- <?php
- /***
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\AdminNotification\Controller\Adminhtml\Notification;
- class MarkAsReadTest extends \Magento\TestFramework\TestCase\AbstractBackendController
- {
- public function setUp()
- {
- $this->resource = 'Magento_AdminNotification::mark_as_read';
- $this->uri = 'backend/admin/notification/markasread';
- parent::setUp();
- }
- }
|