We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b92aef0 commit 2d0c917Copy full SHA for 2d0c917
dev/tests/integration/testsuite/Magento/Reports/Controller/Adminhtml/Report/Statistics/IndexTest.php
@@ -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