tests updated according to fix for the link tag'
This commit is contained in:
parent
ec3240ecfd
commit
1bf26f216d
3 changed files with 9 additions and 4 deletions
|
|
@ -51,7 +51,9 @@ public:
|
|||
//!< with details
|
||||
|
||||
/**
|
||||
* The class method comment
|
||||
* The class method comment.
|
||||
*
|
||||
* \link SomeAnotherClass#classMethodExtended(int, int) a link text \endlink
|
||||
*/
|
||||
void classMethod()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -111,8 +111,9 @@ public class doxygen_parsing_runme {
|
|||
"The class attribute post-comment with details \n" +
|
||||
"");
|
||||
wantedComments.put("doxygen_parsing.SomeAnotherClass.classMethod()",
|
||||
" The class method comment \n" +
|
||||
" \n" +
|
||||
" The class method comment.<br>\n" +
|
||||
" <br>\n" +
|
||||
" {@link SomeAnotherClass#classMethodExtended(int,int) a link text }\n" +
|
||||
"");
|
||||
wantedComments.put("doxygen_parsing.SomeAnotherStruct.structMethodExtended2(int, int)",
|
||||
" The struct method with parameter \n" +
|
||||
|
|
|
|||
|
|
@ -19,7 +19,9 @@ r"""
|
|||
""")
|
||||
commentVerifier.check(doxygen_parsing.SomeAnotherClass.classMethod.__doc__,
|
||||
r"""
|
||||
The class method comment
|
||||
The class method comment.
|
||||
|
||||
SomeAnotherClass#classMethodExtended(int, int) a link text
|
||||
""")
|
||||
commentVerifier.check(doxygen_parsing.SomeAnotherClass.classMethodExtended.__doc__,
|
||||
r"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue