Пример #1
0
 /**
  * @covers ::getLabel
  * @covers ::setLabel
  * @group  Fieldset
  */
 public function testGetSetLabel()
 {
     $name = 'rob';
     $this->object->setName($name);
     // Check the correct default is returned
     $this->assertEquals($name, $this->object->getLabel());
     // Check the correct value is returned when a label is set
     $label = 'What is your name?';
     $this->object->setLabel($label);
     $this->assertEquals($label, $this->object->getLabel());
 }