public function testGetTags()
 {
     $lexer = new Lexer(array('{#', '#}'), array('{%', '%}'), array('{#', '/}'));
     $this->assertEquals($lexer->getTags(), array('tag_comment' => array('{#', '#}'), 'tag_block' => array('{%', '%}'), 'tag_variable' => array('{#', '/}')));
 }