Esempio n. 1
0
 public function testOutOfBounds()
 {
     $mail = new Zend_Mail_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');
 }