Click or drag to resize

SmartTestRunTest Method (Criteria, ExpressionActionActContext, Assertion)

Executes the Act part of the test and its related Smart Assertions.

Namespace:  SmartTests
Assembly:  SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax
public static void RunTest(
	Criteria cases,
	Expression<Action<ActContext>> act,
	params Assertion[] assertions
)

Parameters

cases
Type: SmartTestsCriteria
The Criteria expression for the tested code.
act
Type: System.Linq.ExpressionsExpressionActionActContext
An Action representing the tested code with an ActContext.
assertions
Type: SmartTestsAssertion
The Smart Assertions for this act.
Exceptions
ExceptionCondition
SmartTestExceptionIn case a Smart Assertion fails after the act.
BadTestExceptionIn case a Smart Assertion fails before the act.
Remarks
Examples
[Test]
public void MyMethodTest()
{
  var mc = new MyClass( 300 );

  RunTest( AnyValue.IsValid,
           ctx => mc.Method( ctx.SetHandle ),
           SmartAssert.Within( 100 ),
           SmartAssert.WaitContextHandle( 1000 ) );

  Assert.IsTrue( result );
  Assert.IsTrue( mc.Done ); // The method runs the parallel code (ctx.SetHandle) to its end.
  Assert.IsNull( mc.Exception ); // There was no exception in the parallel code thread.
}
See Also

Reference