create([]); $this->assertTrue($reminderOutbox->account()->exists()); } public function test_it_belongs_to_a_reminder() { $reminderOutbox = factory(ReminderOutbox::class)->create([]); $this->assertTrue($reminderOutbox->reminder()->exists()); } public function test_it_belongs_to_a_user() { $reminderOutbox = factory(ReminderOutbox::class)->create([]); $this->assertTrue($reminderOutbox->user()->exists()); } }