mirror of
https://github.com/koel/koel
synced 2024-11-28 15:00:42 +00:00
16 lines
251 B
PHP
16 lines
251 B
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Unit\Models;
|
||
|
|
||
|
use App\Models\Album;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class AlbumTest extends TestCase
|
||
|
{
|
||
|
/** @test */
|
||
|
public function it_can_be_instantiated()
|
||
|
{
|
||
|
$this->assertInstanceOf(Album::class, new Album());
|
||
|
}
|
||
|
}
|