String comment = "/**\r\n" +
" * @Route(\"/hello/{name}\", name=null, requierements={\"name\" = \"\\+\"})\r\n" +
" * @Template()\r\n" +
" */";
AnnotationCommentParser parser = new AnnotationCommentParser();
parser.setIncludedClassNames(new String[]{"Template"});
List<Annotation> annotations = parser.parse(comment, 1568);
assertEquals(2, annotations.size());
Annotation annotation = annotations.get(0);
assertEquals("", annotation.getNamespace());