예제 #1
0
파일: MailerTest.php 프로젝트: Kervinou/OBM
 public function test_render_body_when_template_root_not_set_should_throw()
 {
     $this->setExpectedException('SMailException', 'Template root not set');
     SMailer::set_template_root(null);
     $mail = $this->mailer->prepare_greetings_message($this->user);
 }