akaunting/tests/TestCase.php
2018-07-14 13:22:33 +03:00

19 lines
376 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication, DatabaseMigrations;
protected function setUp()
{
parent::setUp();
$this->artisan('db:seed');
}
}