Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ConfigPageVisibilityTest.php
Go to the documentation of this file.
1 <?php
7 
8 use Magento\Mtf\TestCase\Injectable;
9 use Magento\Backend\Test\Page\Adminhtml\SystemConfigEdit;
10 
16 class ConfigPageVisibilityTest extends Injectable
17 {
18  /* tags */
19  const SEVERITY = 'S1';
20  /* end tags */
21 
28 
35  public function __inject(SystemConfigEdit $configurationAdminPage)
36  {
37  $this->configurationAdminPage = $configurationAdminPage;
38  }
39 
45  public function test()
46  {
47  $this->configurationAdminPage->open();
48  }
49 }