Ejemplo n.º 1
0
 /**
  * Test generating domain emails
  */
 public function testDomainEmailGeneation()
 {
     $emails = CRM_Contact_Form_Task_EmailCommon::domainEmails();
     $this->assertNotEmpty($emails);
     $optionValue = $this->callAPISuccess('OptionValue', 'Get', array('id' => $this->_optionValue['id']));
     $this->assertTrue(array_key_exists('"Seamus Lee" <*****@*****.**>', $emails));
     $this->assertEquals('"Seamus Lee" <*****@*****.**>', $optionValue['values'][$this->_optionValue['id']]['label']);
 }