koel/tests/Unit/Models/InteractionTest.php

16 lines
275 B
PHP
Raw Normal View History

2017-12-09 22:39:34 +00:00
<?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());
}
}