Ejemplo n.º 1
0
 /**
  * @covers ::__construct
  * @group  Fieldset
  */
 public function testConstruct()
 {
     $attributes = ['type' => 'checkbox', 'name' => '', 'value' => null];
     $instance = new Checkbox();
     $this->assertEquals($attributes, $instance->getAttributes());
 }