encodingType() public method

public encodingType ( $type )
Esempio n. 1
0
 public function testEncodingType()
 {
     $form = new FormOpen();
     $expected = '<form method="POST" action="" enctype="custom">';
     $result = $form->encodingType('custom')->render();
     $this->assertEquals($expected, $result);
 }