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:
parent
bb01e06a6a
commit
0f21adf3f9
3 changed files with 33 additions and 2 deletions
|
|
@ -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``.
|
||||
"""
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue