<?php
namespace Tests\Unit;
use Tests\TestCase;
use App\Models\Media;
class MediaTest extends TestCase
{
public function test_get_note_from_media()
$media = Media::find(1);
$note = $media->note;
$this->assertInstanceOf('App\Models\Note', $note);
}