| AssignActT Constructor |
Creates an instance of
AssignActT to represent an assignment of a property or indexer in the Act
part of your test.
Namespace:
SmartTests.Acts
Assembly:
SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax public AssignAct(
Expression<Func<T>> assignee,
T value
)
Public Sub New (
assignee As Expression(Of Func(Of T)),
value As T
)
public:
AssignAct(
Expression<Func<T>^>^ assignee,
T value
)
new :
assignee : Expression<Func<'T>> *
value : 'T -> AssignAct
Parameters
- assignee
- Type: System.Linq.ExpressionsExpressionFuncT
A lambda Expression of the assigned member. - value
- Type: T
The value to be assigned.
Remarks See Also