Click or drag to resize

SmartTestRunTest Method (Criteria, ExpressionAction, 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> act,
	params Assertion[] assertions
)

Parameters

cases
Type: SmartTestsCriteria
The Criteria expression for the tested code.
act
Type: System.Linq.ExpressionsExpressionAction
An Action representing the tested code.
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 ReturnVoidTest()
{
    var mc = new MyClass( 10 );

    RunTest( MinIncluded.IsAboveMin,
             () => mc.SetValue( 2 ) );

    Assert.AreEqual( 2, mc.Value );
}
See Also