16 lines
329 B
PHP
Executable file
16 lines
329 B
PHP
Executable file
<?php
|
|
|
|
namespace Tests;
|
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
/**
|
|
* Indicates whether the default seeder should run before each test.
|
|
*
|
|
* @var bool
|
|
* @noinspection PhpMissingFieldTypeInspection
|
|
*/
|
|
// protected $seed = true;
|
|
}
|