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