/**
  * Get total Number of unread emails
  *
  * @return int
  */
 public function countUnreadMails()
 {
     return $this->mailer->countUnreadMails();
 }
 /**
  * @expectedException SimpleMailReceiver\Exceptions\SimpleMailReceiverException
  * @expectedExceptionMessage Error getting the number of unread mails
  */
 public function testGetUnreadMailsException()
 {
     $this->mailer = new Mailserver(null, new \SimpleMailReceiver\Exceptions\ExceptionThrower());
     $this->mailer->countUnreadMails();
 }