Example #1
0
 /**
  * Tests the getTitleKeys method.
  */
 public function testGetTitleKeys()
 {
     $keys = Contact::getTitleKeys();
     $this->assertTrue(is_array($keys));
     $this->assertCount(2, $keys);
     $this->assertSame(Contact::TITLE_MR, $keys[0]);
     $this->assertSame(Contact::TITLE_MRS, $keys[1]);
 }