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