Add a simple test of multiple parameters to Doxygen test suite.

Ensure that translating more than one @param tag works correctly.
This commit is contained in:
Vadim Zeitlin 2014-08-05 01:48:49 +02:00
commit 0f21adf3f9
3 changed files with 33 additions and 2 deletions

View file

@ -75,3 +75,15 @@ commentVerifier.check(doxygen_basic_translate.function7.__doc__,
:param a: Very strange param
"""
)
commentVerifier.check(doxygen_basic_translate.Atan2.__doc__,
"""
Multiple parameters test.
:type y: float
:param y: Vertical coordinate.
:type x: float
:param x: Horizontal coordinate.
:return: Arc tangent of ``y/x``.
"""
)