Attendize/tests/TestCase.php

21 lines
435 B
PHP
Raw Normal View History

2016-02-29 15:59:36 +00:00
<?php
2016-03-05 00:18:10 +00:00
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
protected $baseUrl = 'http://dev.attendize.com';
2016-02-29 15:59:36 +00:00
2016-03-05 00:18:10 +00:00
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
2016-03-05 00:18:10 +00:00
$app->make('Illuminate\Contracts\Console\Kernel')->bootstrap();
2016-02-29 15:59:36 +00:00
2016-03-05 00:18:10 +00:00
return $app;
}
2016-02-29 15:59:36 +00:00
}