CustomersMostTest.php 550 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Backend\Test\Unit\Controller\Adminhtml\Dashboard;
  7. /**
  8. * Test for \Magento\Backend\Controller\Adminhtml\Dashboard\CustomersMost
  9. */
  10. class CustomersMostTest extends AbstractTestCase
  11. {
  12. public function testExecute()
  13. {
  14. $this->assertExecute(
  15. \Magento\Backend\Controller\Adminhtml\Dashboard\CustomersMost::class,
  16. \Magento\Backend\Block\Dashboard\Tab\Customers\Most::class
  17. );
  18. }
  19. }