Akaunting/tests/TestCase.php

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');
}
}