Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
VerifyAdminAccountSharingEntityTest.php
Go to the documentation of this file.
1 <?php
8 
9 use Magento\Mtf\TestCase\Injectable;
10 use Magento\Config\Test\Page\Adminhtml\AdminAccountSharing;
11 
21 class VerifyAdminAccountSharingEntityTest extends Injectable
22 {
23  /* tags */
24  const MVP = 'yes';
25  const DOMAIN = 'PS';
26  const TO_MAINTAIN = 'yes';
27  const TEST_TYPE = 'extended_acceptance_test';
28  /* end tags */
29 
35  private $adminAccountSharing;
36 
40  public function __inject(
41  AdminAccountSharing $adminAccountSharing
42  ) {
43  $this->adminAccountSharing = $adminAccountSharing;
44  }
45 
51  public function test()
52  {
53  $this->adminAccountSharing->open();
54  sleep(10);
55  }
56 }