snipe-it/tests/TestCase.php

40 lines
825 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
*/
2016-04-12 23:32:52 -07:00
//protected $baseUrl = 'http://snipe-it5.dev:8888';
2016-04-13 00:35:28 -07:00
function __construct()
{
parent::setUp();
}
2016-03-25 01:18:05 -07:00
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
$app = require __DIR__.'/../bootstrap/app.php';
$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
//Artisan::call('migrate');
}
public function tearDown()
{
//Artisan::call('migrate:reset');
parent::tearDown();
}
}