autoload.php 466 B

123456789101112
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. require_once __DIR__ . '/../../../../app/autoload.php';
  7. $testsBaseDir = dirname(__DIR__);
  8. $autoloadWrapper = \Magento\Framework\Autoload\AutoloaderRegistry::getAutoloader();
  9. $autoloadWrapper->addPsr4('Magento\\TestFramework\\', "{$testsBaseDir}/framework/Magento/TestFramework/");
  10. $autoloadWrapper->addPsr4('Magento\\', "{$testsBaseDir}/testsuite/Magento/");