Ejemplo n.º 1
0
 public function testOutOfBounds()
 {
     $mail = new Storage\Mbox(array('filename' => $this->_mboxFile));
     $this->setExpectedException('Zend\\Mail\\Storage\\Exception\\OutOfBoundsException');
     $mail->seek(INF);
 }
Ejemplo n.º 2
0
 public function testOutOfBounds()
 {
     $mail = new Storage\Mbox(array('filename' => $this->_mboxFile));
     try {
         $mail->seek(INF);
     } catch (\Exception $e) {
         return;
         // test ok
     }
     $this->fail('no exception raised while seeking to not invalid id');
 }