12345678910111213141516171819202122232425 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\FunctionalTestingFramework\Util;
- use AspectMock\Test as AspectMock;
- use PHPUnit\Framework\TestCase;
- /**
- * Class MagentoTestCase
- */
- class MagentoTestCase extends TestCase
- {
- /**
- * Teardown for removing AspectMock Double References
- * @return void
- */
- public static function tearDownAfterClass()
- {
- AspectMock::clean();
- }
- }
|