Ejemplo n.º 1
0
 public function testClose()
 {
     $mail = new Storage\Mbox(array('filename' => $this->_mboxFile));
     $mail->close();
 }
Ejemplo n.º 2
0
 public function testClose()
 {
     $mail = new Storage\Mbox(array('filename' => $this->_mboxFile));
     try {
         $mail->close();
     } catch (\Exception $e) {
         $this->fail('exception raised while closing mbox file');
     }
 }