diff --git a/Examples/test-suite/doxygen_parsing.i b/Examples/test-suite/doxygen_parsing.i index b4579c886..d94c60222 100644 --- a/Examples/test-suite/doxygen_parsing.i +++ b/Examples/test-suite/doxygen_parsing.i @@ -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() { diff --git a/Examples/test-suite/java/doxygen_parsing_runme.java b/Examples/test-suite/java/doxygen_parsing_runme.java index ec9390849..7a8b0fae9 100644 --- a/Examples/test-suite/java/doxygen_parsing_runme.java +++ b/Examples/test-suite/java/doxygen_parsing_runme.java @@ -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.
\n" + + "
\n" + + " {@link SomeAnotherClass#classMethodExtended(int,int) a link text }\n" + ""); wantedComments.put("doxygen_parsing.SomeAnotherStruct.structMethodExtended2(int, int)", " The struct method with parameter \n" + diff --git a/Examples/test-suite/python/doxygen_parsing_runme.py b/Examples/test-suite/python/doxygen_parsing_runme.py index ccf03797c..1ad95ff75 100755 --- a/Examples/test-suite/python/doxygen_parsing_runme.py +++ b/Examples/test-suite/python/doxygen_parsing_runme.py @@ -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"""