Init.php 272 B

123456789101112131415
  1. <?php
  2. namespace Codeception\PHPUnit;
  3. class Init
  4. {
  5. /**
  6. * @api
  7. */
  8. public static function init()
  9. {
  10. require_once __DIR__ . DIRECTORY_SEPARATOR . 'phpunit7-interfaces.php';
  11. require_once __DIR__ . DIRECTORY_SEPARATOR . 'shim.php';
  12. }
  13. }