Пример #1
0
 /**
  * @covers ::setAttributes
  * @covers ::getAttributes
  * @group  Fieldset
  */
 public function testGetSetAttributes()
 {
     $attributes = ['name' => 'foobar', 'value' => null];
     $this->object->setAttributes($attributes);
     $this->assertEquals($attributes, $this->object->getAttributes());
 }