Example #1
0
 public function testNoop()
 {
     $mail = new Storage\Pop3($this->_params);
     try {
         $mail->noop();
     } catch (\Exception $e) {
         $this->fail('exception raised while doing nothing (noop)');
     }
 }
Example #2
0
 public function testNoop()
 {
     $mail = new Storage\Pop3($this->_params);
     $mail->noop();
 }