MagentoTestCase.php 485 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\FunctionalTestingFramework\Util;
  7. use AspectMock\Test as AspectMock;
  8. use PHPUnit\Framework\TestCase;
  9. /**
  10. * Class MagentoTestCase
  11. */
  12. class MagentoTestCase extends TestCase
  13. {
  14. /**
  15. * Teardown for removing AspectMock Double References
  16. * @return void
  17. */
  18. public static function tearDownAfterClass()
  19. {
  20. AspectMock::clean();
  21. }
  22. }