Example #1
0
 /**
  * Tests the getTitleValue method.
  */
 public function testGetTitleValue()
 {
     $contact = new Contact();
     $contact->setTitle(Contact::TITLE_MR);
     $this->assertSame('mremi_contact.form.title_mr', $contact->getTitleValue());
     $contact->setTitle(Contact::TITLE_MRS);
     $this->assertSame('mremi_contact.form.title_mrs', $contact->getTitleValue());
 }