public function testInputButtonWithNameAndValue()
 {
     $expected = '<input type="button" name="hello" value="10">';
     $result = Html5Gen::input(['type' => 'button', 'value' => '10', 'name' => 'hello']);
     $this->assertEquality($expected, $result);
 }