/**
  * @test
  */
 public function registerNamespaceDoesNotThrowAnExceptionIfTheAliasExistAlreadyAndPointsToTheSamePhpNamespace()
 {
     $templateParser = new TemplateParser();
     $templateParser->registerNamespace('foo', 'Some\\Namespace');
     $templateParser->registerNamespace('foo', 'Some\\Namespace');
     // dummy assertion to avoid "risky test" warning
     $this->assertTrue(true);
 }