Exemplo n.º 1
0
 public function testfill_in_additional_list_fields()
 {
     error_reporting(E_ERROR | E_PARSE);
     $prospect = new Prospect();
     $prospect->salutation = 'mr';
     $prospect->title = 'lastn firstn';
     $prospect->first_name = 'first';
     $prospect->first_name = 'last';
     $prospect->email1 = '*****@*****.**';
     $prospect->fill_in_additional_list_fields();
     $this->assertAttributeEquals('last', 'full_name', $prospect);
     $this->assertAttributeEquals('last <email1@test.com>', 'email_and_name1', $prospect);
 }