mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
27 lines
601 B
PHP
27 lines
601 B
PHP
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
use Mockery;
|
|
use Tests\Traits\InteractsWithIoc;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
use DatabaseTransactions, CreatesApplication, InteractsWithIoc;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
$this->prepareForTests();
|
|
}
|
|
|
|
protected function tearDown()
|
|
{
|
|
$this->addToAssertionCount(Mockery::getContainer()->mockery_getExpectationCount());
|
|
|
|
Mockery::close();
|
|
parent::tearDown();
|
|
}
|
|
}
|