Example #1
0
 /**
  * @covers ::__construct
  * @group  Fieldset
  */
 public function testConstruct()
 {
     $attributes = ['type' => 'radio', 'name' => '', 'value' => null];
     $instance = new Radio();
     $this->assertEquals($attributes, $instance->getAttributes());
 }