render() 공개 메소드

Renders the button.
public render ( string $type = 'submit' ) : string
$type string Specifies the type of button (e.g. "button", "reset" or "submit")
리턴 string
 /**
  * @test
  */
 public function renderCorrectlySetsTagNameAndDefaultAttributes()
 {
     $mockTagBuilder = $this->getMockBuilder(TagBuilder::class)->setMethods(array('setTagName', 'addAttribute', 'setContent'))->getMock();
     $mockTagBuilder->expects($this->any())->method('setTagName')->with('button');
     $mockTagBuilder->expects($this->at(2))->method('addAttribute')->with('type', 'submit');
     $mockTagBuilder->expects($this->at(3))->method('addAttribute')->with('name', '');
     $mockTagBuilder->expects($this->at(4))->method('addAttribute')->with('value', '');
     $mockTagBuilder->expects($this->at(5))->method('setContent')->with('Button Content');
     $this->viewHelper->expects($this->atLeastOnce())->method('renderChildren')->will($this->returnValue('Button Content'));
     $this->viewHelper->injectTagBuilder($mockTagBuilder);
     $this->viewHelper->initialize();
     $this->viewHelper->render();
 }