public function testHasProperty()
 {
     $collection = new CAttributeCollection();
     $this->assertEquals(false, $collection->hasProperty('Property'));
     $collection->Property = 'value';
     $this->assertEquals(true, $collection->hasProperty('Property'));
 }
 public function testHasProperty()
 {
     $collection = new CAttributeCollection();
     $this->assertFalse($collection->hasProperty('Property'));
     $collection->Property = 'value';
     $this->assertTrue($collection->hasProperty('Property'));
 }