Click or drag to resize

PropertyChangedAssertionsNotRaised_PropertyChanged Method (SmartAssertPlaceHolder)

Creates an Assertion that ensure an object property/indexer did not change at all in the Act part of your test.

Namespace:  SmartTests.Assertions
Assembly:  SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax
public static Assertion NotRaised_PropertyChanged(
	this SmartAssertPlaceHolder _
)

Parameters

_
Type: SmartTestsSmartAssertPlaceHolder
The dummy place holder for all Smart Assertions.

Return Value

Type: Assertion
The newly created Assertion.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SmartAssertPlaceHolder. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
BadTestException If the involved instance in the Act is not an INotifyPropertyChanged instance.
SmartTestException

If the INotifyPropertyChanged event is raised for any property.

Remarks
This Assertion ensures that:
  1. Before the Act -

    Nothing special.

  2. During the Act -

    Ensures the PropertyChanged event is not raised for any property.

  3. After the Act -

    If the event is raised, a SmartTestException is thrown.

Examples
In this example, the Smart Assertion verifies that the PropertyChanged event is not raised for any property of mc.
[Test]
public void MyMethodTest()
{
    var mc = new MyClass();
    RunTest( ValidValue.IsValid,
             () => mc.MyMethod(),
             SmartAssert.NotRaised_PropertyChanged() );
}
See Also