koel/tests/Unit/Models/SettingTest.php
2017-12-09 23:39:34 +01:00

15 lines
259 B
PHP

<?php
namespace Tests\Unit\Models;
use App\Models\Setting;
use Tests\TestCase;
class SettingTest extends TestCase
{
/** @test */
public function it_can_be_instantiated()
{
$this->assertInstanceOf(Setting::class, new Setting());
}
}