Ejemplo n.º 1
0
 public function testSetByName()
 {
     $this->assertTrue(!isset($this->contact->NICKNAME));
     $this->assertTrue($this->contact->setPropertyByName('NICKNAME', 'Maxie'));
     $this->assertTrue(isset($this->contact->NICKNAME));
     $this->assertEquals((string) $this->contact->NICKNAME, 'Maxie');
 }