phpunit.php 407 B

123456789101112
  1. <?php
  2. include __DIR__.'/vendor/autoload.php';
  3. $capsule = new \Illuminate\Database\Capsule\Manager;
  4. $capsule->addConnection([ 'driver' => 'sqlite', 'database' => ':memory:', 'prefix' => 'prfx_' ]);
  5. $capsule->setEventDispatcher(new \Illuminate\Events\Dispatcher);
  6. $capsule->bootEloquent();
  7. $capsule->setAsGlobal();
  8. include __DIR__.'/tests/models/Category.php';
  9. include __DIR__.'/tests/models/MenuItem.php';