Fixed comments parsing, but broken li_boost_shared_ptr_bits test

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2012-doxygen@13210 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dmitry Kabak 2012-06-29 19:37:42 +00:00
commit 774cbc3ef2
4 changed files with 138 additions and 203 deletions

View file

@ -68,7 +68,9 @@ public class doxygen_parsing_runme {
wantedComments.put("CSimpleClass", " This is simple comment for a class \n");
wantedComments.put("simpleMethod", " Simple method \n");
wantedComments.put("simpleMethodWithParameter", " Simple method with parameter \n @param\tparam Some test param \n");
wantedComments.put("simpleMethodWithParameter", " Simple method with parameter \n" +
" @param\tparam Some test param \n" +
" @param\targument Some test argument \n");
wantedComments.put("CTemplateClassInt", " Comment for template class \n");
wantedComments.put("templateMethod", " Template method \n");
@ -80,6 +82,8 @@ public class doxygen_parsing_runme {
wantedComments.put("getSimpleVarThree", " This is again another type of comment for a var \n");
wantedComments.put("setSimpleVarFour", " This is the last type of comment for a var \n");
wantedComments.put("getSimpleVarFour", " This is the last type of comment for a var \n");
wantedComments.put("setSimpleVarFive", " This is a post comment \n");
wantedComments.put("getSimpleVarFive", " This is a post comment \n");
int errorCount=0;