コード例 #1
0
ファイル: SendMailTest.php プロジェクト: cross-solution/yawik
 /**
  * @testdox Gets mail service when passed a string to send()
  */
 public function testRetrieveMailBeforeSending()
 {
     $mail = new \Core\Mail\Message();
     $this->target->setService('retrieveme', $mail);
     $this->expectedMail = $mail;
     $this->target->send('retrieveme');
 }