background image
<< check_expected_result Variable | Variables Used in COM/Visual Basic Templates >>
<< check_expected_result Variable | Variables Used in COM/Visual Basic Templates >>

operation_arglist Variable

Replacement Variables for Unit Test Generation Templates
123
<operation_arglist>
The code that is generated here depends on the target language for
generation and the operation that is selected. The result is a string that can
be used in the function invocations string.
Example
TestClass::TestShort( ByVal Arg1 As Integer, ByRef Arg2 As Integer ) As
Integer
Before:
Dim tc As TestClass
Dim actRet As Integer
<parameter_declarations>
` Invoke: <method_declaration> of TestClass
<return_value> tc.<operation_name> (<operation_arglist>)
After:
Dim tc As TestClass
Dim actRet As Integer
Dim arg1 As Integer
Dim arg2 As Integer
` Invoke: TestShort( ByVal Arg1 As Integer, ByRef Arg2 As Integer ) As
Integer of TestClass
actRet = tc.TestShort (arg1,arg2)
Variable
Description and Example