DataActionsTest.php 549 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace tests\verification\Tests;
  7. use tests\util\MftfTestCase;
  8. class DataActionsTest extends MftfTestCase
  9. {
  10. /**
  11. * Tests Data actions (create,update,etc) generate using correctly scoped variables
  12. *
  13. * @throws \Exception
  14. * @throws \Magento\FunctionalTestingFramework\Exceptions\TestReferenceException
  15. */
  16. public function testDataActions()
  17. {
  18. $this->generateAndCompareTest('DataActionsTest');
  19. }
  20. }