| NotChangedAssertionsNotChangedExcept Method (SmartAssertPlaceHolder, Object, String) |
Creates an
Assertion that ensure object public properties of the specified instance did not change,
except the specified ones,
in the Act part of your test.
Namespace:
SmartTests.Assertions
Assembly:
SmartTests (in SmartTests.dll) Version: 1.12.0
Syntax public static Assertion NotChangedExcept(
this SmartAssertPlaceHolder _,
Object instance,
params string[] exceptions
)
<ExtensionAttribute>
Public Shared Function NotChangedExcept (
_ As SmartAssertPlaceHolder,
instance As Object,
ParamArray exceptions As String()
) As Assertion
public:
[ExtensionAttribute]
static Assertion^ NotChangedExcept(
SmartAssertPlaceHolder^ _,
Object^ instance,
... array<String^>^ exceptions
)
[<ExtensionAttribute>]
static member NotChangedExcept :
_ : SmartAssertPlaceHolder *
instance : Object *
exceptions : string[] -> Assertion
Parameters
- _
- Type: SmartTestsSmartAssertPlaceHolder
The dummy place holder for all Smart Assertions. - instance
- Type: SystemObject
The instance for which to test public property changes. - exceptions
- Type: SystemString
The names of the public properties that can change during the Act.
Return Value
Type:
AssertionThe 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 Exception | Condition |
---|
BadTestException |
If exceptions are not public properties of instance.
|
SmartTestException |
If any public property of instance, except the exceptions have changed.
|
Remarks
This
Assertion ensures that:
- Before the Act -
If names in exceptions are not public properties of
instance, a BadTestException is thrown.
- After the Act -
If a public property of instance changed during the Act (except
exceptions), a
SmartTestException is thrown.
Examples
In this example, the Smart Assertion verifies that no public property of
other, except
CopyCount,
changed while calling
CopyPropertiesFrom.
[Test]
public void CopyPropertiesFromTest()
{
var mc = new MyClass();
var other = new MyClass();
RunTest( ValidValue.IsValid,
() => mc.CopyPropertiesFrom( other ),
SmartAssert.NotChangedExcept( other, "CopyCount" ) );
}
See Also