snipe-it/tests/TestCase.php

44 lines
936 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://snipe-it5.dev:8888';
function __construct()
{
2016-04-12 22:00:21 -07:00
parent::createApplication();
2016-04-12 22:10:50 -07:00
//parent::setUp();
2016-03-25 01:18:05 -07:00
}
/**
* Creates the application.
*
* @return \Illuminate\Foundation\Application
*/
public function createApplication()
{
2016-04-12 22:10:50 -07:00
//putenv('DB_DEFAULT=sqlite');
2016-03-25 01:18:05 -07:00
$app = require __DIR__.'/../bootstrap/app.php';
$app->make(Illuminate\Contracts\Console\Kernel::class)->bootstrap();
return $app;
}
public function setUp()
{
2016-04-12 22:10:50 -07:00
//Artisan::call('migrate');
//parent::setUp();
2016-03-25 01:18:05 -07:00
//Artisan::call('migrate');
}
public function tearDown()
{
//Artisan::call('migrate:reset');
parent::tearDown();
}
}