mirror of
https://github.com/koel/koel
synced 2024-12-18 16:44:03 +00:00
16 lines
259 B
PHP
16 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());
|
||
|
}
|
||
|
}
|