コード例 #1
0
ファイル: MboxTest.php プロジェクト: jorgenils/zend-framework
 public function testClose()
 {
     $mail = new Zend_Mail_Mbox(array('filename' => $this->_mboxFile));
     try {
         $mail->close();
     } catch (Exception $e) {
         $this->fail('exception raised while closing mbox file');
     }
 }