Skip to content

Commit 2d0c917

Browse files
committed
Integration Test for issue 25931
1 parent b92aef0 commit 2d0c917

File tree

1 file changed

+25
-0
lines changed
  • dev/tests/integration/testsuite/Magento/Reports/Controller/Adminhtml/Report/Statistics

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?php
2+
/**
3+
* Copyright © Magento, Inc. All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
7+
declare(strict_types=1);
8+
9+
namespace Magento\Reports\Controller\Adminhtml\Report\Statistics;
10+
11+
/**
12+
* @magentoAppArea adminhtml
13+
*/
14+
class IndexTest extends \Magento\TestFramework\TestCase\AbstractBackendController
15+
{
16+
/**
17+
* Test load page
18+
*/
19+
public function testExecute()
20+
{
21+
$this->dispatch('backend/reports/report_statistics');
22+
$actual = $this->getResponse()->getBody();
23+
$this->assertContains('Never', $actual);
24+
}
25+
}

0 commit comments

Comments
 (0)