/**
  * @test
  */
 public function sectionIsAddedToParseVariableContainer()
 {
     $section = new SectionViewHelper();
     $viewHelperNodeMock = $this->getMock(ViewHelperNode::class, array(), array(), '', FALSE);
     $viewHelperArguments = array('name' => new TextNode('sectionName'));
     $variableContainer = new StandardVariableProvider();
     $section->postParseEvent($viewHelperNodeMock, $viewHelperArguments, $variableContainer);
     $this->assertTrue($variableContainer->exists('1457379500_sections'), 'Sections array was not created, albeit it should.');
     $sections = $variableContainer->get('1457379500_sections');
     $this->assertEquals($sections['sectionName'], $viewHelperNodeMock, 'ViewHelperNode for section was not stored.');
 }