NXUnit Framework Class Library

AssertStrategy Structure

[This is preliminary documentation and subject to change.]

AssertStrategy provides a group of options for your to build your own assertion.

Note   Don't new the struct directly, but use it like the following instead:
AssertStrategy str = XMLAssert.DEFAULT_STRATEGY;
str.IsOrderSensitive = ...
...
XMLAssert xa = XMLAssert.CreateInstance( str );

For a list of all members of this type, see AssertStrategy Members.

System.Object
   System.ValueType
      NXUnit.Framework.AssertStrategy

public struct AssertStrategy

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Requirements

Namespace: NXUnit.Framework

Assembly: NXUnit.Framework (in NXUnit.Framework.dll)

See Also

AssertStrategy Members | NXUnit.Framework Namespace | XMLAssert