コード例 #1
0
ファイル: BaseTest.php プロジェクト: utrenkner/YAWIK
 /**
  * @testdox Allows setting and getting a \Zend\Mail\Transport\TransportInterface
  */
 public function testSetAndGetTransport()
 {
     $target = new MailService();
     $transport = $this->getMockForAbstractClass('\\Zend\\Mail\\Transport\\TransportInterface');
     $target->setTransport($transport);
     $this->assertSame($transport, $target->getTransport());
 }