| ActTInvoke Method |
Run the Act part of your test.
Namespace:
SmartTests
Assembly:
SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax public abstract T Invoke(
ActContext context
)
Public MustOverride Function Invoke (
context As ActContext
) As T
public:
virtual T Invoke(
ActContext^ context
) abstract
abstract Invoke :
context : ActContext -> 'T
Parameters
- context
- Type: SmartTestsActContext
The ActContext of the test.
Return Value
Type:
TThe result of the Act part of your test.
See Also