9 use Magento\Mtf\TestCase\Injectable;
10 use Magento\Mtf\TestStep\TestStepFactory;
46 public function __inject(TestStepFactory $stepFactory)
48 $this->stepFactory = $stepFactory;
57 public function test($configData)
59 $this->configData = $configData;
60 $this->stepFactory->create(
61 \
Magento\Config\Test\TestStep\SetupConfigurationStep::class,
62 [
'configData' => $this->configData]
64 $this->stepFactory->create(
65 \
Magento\User\Test\TestStep\LogoutUserOnBackendStep::class,
66 [
'configData' => $this->configData]
77 $this->stepFactory->create(
78 \
Magento\Config\Test\TestStep\SetupConfigurationStep::class,
79 [
'configData' => $this->configData,
'rollback' =>
true]
__inject(TestStepFactory $stepFactory)