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