assertNull($call->getParsedContentAttribute()); } /** @test */ public function call_note_returns_html_if_defined() { $call = new Call; $call->content = '### test'; $this->assertEquals( '

test

', $call->getParsedContentAttribute() ); } }