Пример #1
0
 /**
  * @covers ::getAttribute
  * @covers ::setAttribute
  * @group  Fieldset
  */
 public function testIndividualAttribute()
 {
     $name = 'random_attr';
     $value = '1234567890';
     $this->object->setAttribute($name, $value);
     $this->assertEquals($value, $this->object->getAttribute($name));
     // Check the correct default gets returned
     $expectedDefault = 'foobar';
     $this->assertEquals($expectedDefault, $this->object->getAttribute('This does not exist!', $expectedDefault));
 }