render() public method

public render ( )
コード例 #1
0
 public function testRenderBasicTextArea()
 {
     $textarea = new TextArea('bio');
     $expected = '<textarea name="bio" rows="10" cols="50"></textarea>';
     $result = $textarea->render();
     $this->assertEquals($expected, $result);
     $textarea = new TextArea('description');
     $expected = '<textarea name="description" rows="10" cols="50"></textarea>';
     $result = $textarea->render();
     $this->assertEquals($expected, $result);
 }