PersistenceGenerationTest.php 710 B

123456789101112131415161718192021222324252627
  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 PersistenceGenerationTest extends MftfTestCase
  9. {
  10. /**
  11. * Tests complex persistence declarations in xml as they are generated to php.
  12. */
  13. public function testPersistedDeclarations()
  14. {
  15. $this->generateAndCompareTest('PersistenceCustomFieldsTest');
  16. }
  17. /**
  18. * Tests complex persistence declarations in xml as they are generated to php.
  19. */
  20. public function testPersistenceActionGroupAppendingTest()
  21. {
  22. $this->generateAndCompareTest('PersistenceActionGroupAppendingTest');
  23. }
  24. }