koel/tests/Unit/Services/PlaylistTest.php

16 lines
265 B
PHP
Raw Normal View History

2017-06-24 20:48:54 +00:00
<?php
2017-12-09 22:39:34 +00:00
namespace Tests\Unit\Services;
2017-06-24 20:48:54 +00:00
use App\Models\Playlist;
use Tests\TestCase;
class PlaylistTest extends TestCase
{
/** @test */
public function it_can_be_instantiated()
{
$this->assertInstanceOf(Playlist::class, new Playlist());
}
}