Ejemplo n.º 1
0
 public function testSend()
 {
     $transport = $this->getMock('Zend\\Mail\\Transport\\File', array('send'));
     $transport->expects($this->once())->method('send');
     $this->message->setTransport($transport);
     $message = new \Zend\Mail\Message();
     $this->message->send($message);
 }