| InvokeActT Constructor (ExpressionFuncActContext, T) |
Creates an instance of
InvokeActT to represent an expression in the Act part of your test while
using the
ActContext.
Namespace:
SmartTests.Acts
Assembly:
SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax public InvokeAct(
Expression<Func<ActContext, T>> invocation
)
Public Sub New (
invocation As Expression(Of Func(Of ActContext, T))
)
public:
InvokeAct(
Expression<Func<ActContext^, T>^>^ invocation
)
new :
invocation : Expression<Func<ActContext, 'T>> -> InvokeAct
Parameters
- invocation
- Type: System.Linq.ExpressionsExpressionFuncActContext, T
The invocation expression of the Act part of your test.
Remarks See Also