/**
  * @test
  * @author Sebastian Kurfürst <*****@*****.**>
  */
 public function setRootNodeCanBeReadOutAgain()
 {
     $rootNode = new Tx_Fluid_Core_Parser_SyntaxTree_RootNode();
     $this->parsingState->setRootNode($rootNode);
     $this->assertSame($this->parsingState->getRootNode(), $rootNode, 'Root node could not be read out again.');
 }