/**
  * @test
  */
 public function renderCorrectlySetsTagNameAndDefaultAttributes()
 {
     $mockTagBuilder = $this->getMock(\TYPO3\CMS\Fluid\Core\ViewHelper\TagBuilder::class, array('setTagName', 'addAttribute', 'setContent'));
     $mockTagBuilder->expects($this->once())->method('setTagName')->with('button');
     $mockTagBuilder->expects($this->at(1))->method('addAttribute')->with('type', 'submit');
     $mockTagBuilder->expects($this->at(2))->method('addAttribute')->with('name', '');
     $mockTagBuilder->expects($this->at(3))->method('addAttribute')->with('value', '');
     $mockTagBuilder->expects($this->at(4))->method('setContent')->with('Button Content');
     $this->viewHelper->expects($this->atLeastOnce())->method('renderChildren')->will($this->returnValue('Button Content'));
     $this->viewHelper->_set('tag', $mockTagBuilder);
     $this->viewHelper->initialize();
     $this->viewHelper->render();
 }