snipe-it/tests/TestCase.php

35 lines
720 B
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* The base URL to use while testing the application.
*
* @var string
*/
protected $baseUrl = 'http://localhost:8000';
2016-04-13 01:14:23 -07:00
2016-03-25 01:18:05 -07:00
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
2016-04-13 01:51:28 -07:00
$app = require_once __DIR__.'/../bootstrap/app.php';
2016-03-25 01:18:05 -07:00
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
return $app;
}
public function setUp()
{
2016-04-12 22:49:07 -07:00
parent::setUp();
2016-03-25 01:18:05 -07:00
}
public function tearDown()
{
//Artisan::call('migrate:reset');
parent::tearDown();
}
}