/**
  * @test
  */
 public function it_gets_unanswered_messages_and_sets_them_as_read()
 {
     $imap = $this->getImap();
     /** @noinspection PhpUndefinedMethodInspection */
     $imap->shouldReceive('sort')->with('UNANSWERED', SORTDATE, true, 0)->andReturn([1, 2]);
     $mailboxManager = new ImapMailboxService($imap);
     $this->assertEquals([1, 2], $mailboxManager->getUnansweredMessages(SORTDATE, true, false));
 }