From 79073e5f1a1ed8e65bad5671df0c0a2c1776f561 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 13 Apr 2016 02:19:03 -0700 Subject: [PATCH] Remove constructor --- tests/TestCase.php | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/TestCase.php b/tests/TestCase.php index f3f4a50915..50a941f771 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -7,13 +7,6 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase * * @var string */ - //protected $baseUrl = 'http://snipe-it5.dev:8888'; - function __construct() - { - parent::createApplication(); - parent::setUp(); - - } /** * Creates the application. @@ -30,7 +23,6 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase public function setUp() { parent::setUp(); - $this->app['artisan']->call('migrate'); } public function tearDown()