readOne() public method

Make Read One Notification.
public readOne ( Notification $notification ) : boolean | Notification
$notification Fenos\Notifynder\Models\Notification
return boolean | Fenos\Notifynder\Models\Notification
 /** @test */
 function it_read_one_notification_by_id()
 {
     $notificationToRead = $this->createNotification();
     $notificationRead = $this->notificationRepo->readOne($notificationToRead);
     $this->assertEquals(1, $notificationRead->read);
 }