mirror of
https://github.com/koel/koel
synced 2025-01-05 09:18:51 +00:00
15 lines
247 B
PHP
15 lines
247 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Models;
|
|
|
|
use App\Models\User;
|
|
use Tests\TestCase;
|
|
|
|
class UserTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function it_can_be_instantiated()
|
|
{
|
|
$this->assertInstanceOf(User::class, new User());
|
|
}
|
|
}
|