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