koel/tests/Unit/Models/InteractionTest.php
2017-12-10 01:23:37 +01:00

15 lines
275 B
PHP

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