IGLib  1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros
NUnit.Framework.Constraints.ConstraintExpression Class Reference

ConstraintExpression represents a compound constraint in the process of being constructed from a series of syntactic elements. More...

+ Inheritance diagram for NUnit.Framework.Constraints.ConstraintExpression:
+ Collaboration diagram for NUnit.Framework.Constraints.ConstraintExpression:

Public Member Functions

 ConstraintExpression ()
 Initializes a new instance of the ConstraintExpression class. More...
 
 ConstraintExpression (ConstraintBuilder builder)
 Initializes a new instance of the ConstraintExpression class passing in a ConstraintBuilder, which may be pre-populated. More...
 
override string ToString ()
 Returns a string representation of the expression as it currently stands. This should only be used for testing, since it has the side-effect of resolving the expression. More...
 
ConstraintExpression Append (ConstraintOperator op)
 Appends an operator to the expression and returns the resulting expression itself. More...
 
ResolvableConstraintExpression Append (SelfResolvingOperator op)
 Appends a self-resolving operator to the expression and returns a new ResolvableConstraintExpression. More...
 
Constraint Append (Constraint constraint)
 Appends a constraint to the expression and returns that constraint, which is associated with the current state of the expression being built. Note that the constraint is not reduced at this time. For example, if there is a NotOperator on the stack we don't reduce and return a NotConstraint. The original constraint must be returned because it may support modifiers that are yet to be applied. More...
 
ConstraintExpression Exactly (int expectedCount)
 Returns a ConstraintExpression, which will apply the following constraint to all members of a collection, succeeding only if a specified number of them succeed. More...
 
ResolvableConstraintExpression Property (string name)
 Returns a new PropertyConstraintExpression, which will either test for the existence of the named property on the object being tested or apply any following constraint to that property. More...
 
ResolvableConstraintExpression Attribute (Type expectedType)
 Returns a new AttributeConstraint checking for the presence of a particular attribute on an object. More...
 
ResolvableConstraintExpression Attribute< TExpected > ()
 Returns a new AttributeConstraint checking for the presence of a particular attribute on an object. More...
 
Constraint Matches (IResolveConstraint constraint)
 Returns the constraint provided as an argument - used to allow custom custom constraints to easily participate in the syntax. More...
 
Constraint Matches< TActual > (Predicate< TActual > predicate)
 Returns the constraint provided as an argument - used to allow custom custom constraints to easily participate in the syntax. More...
 
EqualConstraint EqualTo (object expected)
 Returns a constraint that tests two items for equality More...
 
SameAsConstraint SameAs (object expected)
 Returns a constraint that tests that two references are the same object More...
 
GreaterThanConstraint GreaterThan (object expected)
 Returns a constraint that tests whether the actual value is greater than the supplied argument More...
 
GreaterThanOrEqualConstraint GreaterThanOrEqualTo (object expected)
 Returns a constraint that tests whether the actual value is greater than or equal to the supplied argument More...
 
GreaterThanOrEqualConstraint AtLeast (object expected)
 Returns a constraint that tests whether the actual value is greater than or equal to the supplied argument More...
 
LessThanConstraint LessThan (object expected)
 Returns a constraint that tests whether the actual value is less than the supplied argument More...
 
LessThanOrEqualConstraint LessThanOrEqualTo (object expected)
 Returns a constraint that tests whether the actual value is less than or equal to the supplied argument More...
 
LessThanOrEqualConstraint AtMost (object expected)
 Returns a constraint that tests whether the actual value is less than or equal to the supplied argument More...
 
ExactTypeConstraint TypeOf (Type expectedType)
 Returns a constraint that tests whether the actual value is of the exact type supplied as an argument. More...
 
ExactTypeConstraint TypeOf< TExpected > ()
 Returns a constraint that tests whether the actual value is of the exact type supplied as an argument. More...
 
InstanceOfTypeConstraint InstanceOf (Type expectedType)
 Returns a constraint that tests whether the actual value is of the type supplied as an argument or a derived type. More...
 
InstanceOfTypeConstraint InstanceOf< TExpected > ()
 Returns a constraint that tests whether the actual value is of the type supplied as an argument or a derived type. More...
 
AssignableFromConstraint AssignableFrom (Type expectedType)
 Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument. More...
 
AssignableFromConstraint AssignableFrom< TExpected > ()
 Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument. More...
 
AssignableToConstraint AssignableTo (Type expectedType)
 Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument. More...
 
AssignableToConstraint AssignableTo< TExpected > ()
 Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument. More...
 
CollectionEquivalentConstraint EquivalentTo (IEnumerable expected)
 Returns a constraint that tests whether the actual value is a collection containing the same elements as the collection supplied as an argument. More...
 
CollectionSubsetConstraint SubsetOf (IEnumerable expected)
 Returns a constraint that tests whether the actual value is a subset of the collection supplied as an argument. More...
 
CollectionSupersetConstraint SupersetOf (IEnumerable expected)
 Returns a constraint that tests whether the actual value is a superset of the collection supplied as an argument. More...
 
CollectionContainsConstraint Member (object expected)
 Returns a new CollectionContainsConstraint checking for the presence of a particular object in the collection. More...
 
CollectionContainsConstraint Contains (object expected)
 Returns a new CollectionContainsConstraint checking for the presence of a particular object in the collection. More...
 
ContainsConstraint Contains (string expected)
 Returns a new ContainsConstraint. This constraint will, in turn, make use of the appropriate second-level constraint, depending on the type of the actual argument. This overload is only used if the item sought is a string, since any other type implies that we are looking for a collection member. More...
 
ContainsConstraint Contain (string expected)
 Returns a new ContainsConstraint. This constraint will, in turn, make use of the appropriate second-level constraint, depending on the type of the actual argument. This overload is only used if the item sought is a string, since any other type implies that we are looking for a collection member. More...
 
SubstringConstraint StringContaining (string expected)
 Returns a constraint that succeeds if the actual value contains the substring supplied as an argument. More...
 
SubstringConstraint ContainsSubstring (string expected)
 Returns a constraint that succeeds if the actual value contains the substring supplied as an argument. More...
 
StartsWithConstraint StartWith (string expected)
 Returns a constraint that succeeds if the actual value starts with the substring supplied as an argument. More...
 
StartsWithConstraint StartsWith (string expected)
 Returns a constraint that succeeds if the actual value starts with the substring supplied as an argument. More...
 
StartsWithConstraint StringStarting (string expected)
 Returns a constraint that succeeds if the actual value starts with the substring supplied as an argument. More...
 
EndsWithConstraint EndWith (string expected)
 Returns a constraint that succeeds if the actual value ends with the substring supplied as an argument. More...
 
EndsWithConstraint EndsWith (string expected)
 Returns a constraint that succeeds if the actual value ends with the substring supplied as an argument. More...
 
EndsWithConstraint StringEnding (string expected)
 Returns a constraint that succeeds if the actual value ends with the substring supplied as an argument. More...
 
RegexConstraint Match (string pattern)
 Returns a constraint that succeeds if the actual value matches the regular expression supplied as an argument. More...
 
RegexConstraint Matches (string pattern)
 Returns a constraint that succeeds if the actual value matches the regular expression supplied as an argument. More...
 
RegexConstraint StringMatching (string pattern)
 Returns a constraint that succeeds if the actual value matches the regular expression supplied as an argument. More...
 
SamePathConstraint SamePath (string expected)
 Returns a constraint that tests whether the path provided is the same as an expected path after canonicalization. More...
 
SubPathConstraint SubPathOf (string expected)
 Returns a constraint that tests whether the path provided is the a subpath of the expected path after canonicalization. More...
 
SamePathOrUnderConstraint SamePathOrUnder (string expected)
 Returns a constraint that tests whether the path provided is the same path or under an expected path after canonicalization. More...
 
RangeConstraint InRange (IComparable from, IComparable to)
 Returns a constraint that tests whether the actual value falls within a specified range. More...
 

Protected Attributes

ConstraintBuilder builder
 The ConstraintBuilder holding the elements recognized so far More...
 

Properties

ConstraintExpression Not [get]
 Returns a ConstraintExpression that negates any following constraint. More...
 
ConstraintExpression No [get]
 Returns a ConstraintExpression that negates any following constraint. More...
 
ConstraintExpression All [get]
 Returns a ConstraintExpression, which will apply the following constraint to all members of a collection, succeeding if all of them succeed. More...
 
ConstraintExpression Some [get]
 Returns a ConstraintExpression, which will apply the following constraint to all members of a collection, succeeding if at least one of them succeeds. More...
 
ConstraintExpression None [get]
 Returns a ConstraintExpression, which will apply the following constraint to all members of a collection, succeeding if all of them fail. More...
 
ResolvableConstraintExpression Length [get]
 Returns a new ConstraintExpression, which will apply the following constraint to the Length property of the object being tested. More...
 
ResolvableConstraintExpression Count [get]
 Returns a new ConstraintExpression, which will apply the following constraint to the Count property of the object being tested. More...
 
ResolvableConstraintExpression Message [get]
 Returns a new ConstraintExpression, which will apply the following constraint to the Message property of the object being tested. More...
 
ResolvableConstraintExpression InnerException [get]
 Returns a new ConstraintExpression, which will apply the following constraint to the InnerException property of the object being tested. More...
 
ConstraintExpression With [get]
 With is currently a NOP - reserved for future use. More...
 
NullConstraint Null [get]
 Returns a constraint that tests for null More...
 
TrueConstraint True [get]
 Returns a constraint that tests for True More...
 
FalseConstraint False [get]
 Returns a constraint that tests for False More...
 
GreaterThanConstraint Positive [get]
 Returns a constraint that tests for a positive value More...
 
LessThanConstraint Negative [get]
 Returns a constraint that tests for a negative value More...
 
NaNConstraint NaN [get]
 Returns a constraint that tests for NaN More...
 
EmptyConstraint Empty [get]
 Returns a constraint that tests for empty More...
 
UniqueItemsConstraint Unique [get]
 Returns a constraint that tests whether a collection contains all unique items. More...
 
BinarySerializableConstraint BinarySerializable [get]
 Returns a constraint that tests whether an object graph is serializable in binary format. More...
 
XmlSerializableConstraint XmlSerializable [get]
 Returns a constraint that tests whether an object graph is serializable in xml format. More...
 
CollectionOrderedConstraint Ordered [get]
 Returns a constraint that tests whether a collection is ordered More...
 
Constraint Exist [get]
 Returns a constraint that succeeds if the value is a file or directory and it exists. More...
 

Detailed Description

ConstraintExpression represents a compound constraint in the process of being constructed from a series of syntactic elements.

Individual elements are appended to the expression as they are reorganized. When a constraint is appended, it is returned as the value of the operation so that modifiers may be applied. However, any partially built expression is attached to the constraint for later resolution. When an operator is appended, the partial expression is returned. If it's a self-resolving operator, then a ResolvableConstraintExpression is returned.

Constructor & Destructor Documentation

NUnit.Framework.Constraints.ConstraintExpression.ConstraintExpression ( )
inline

Initializes a new instance of the ConstraintExpression class.

NUnit.Framework.Constraints.ConstraintExpression.ConstraintExpression ( ConstraintBuilder  builder)
inline

Initializes a new instance of the ConstraintExpression class passing in a ConstraintBuilder, which may be pre-populated.

Parameters
builderThe builder.

Member Function Documentation

override string NUnit.Framework.Constraints.ConstraintExpression.ToString ( )
inline

Returns a string representation of the expression as it currently stands. This should only be used for testing, since it has the side-effect of resolving the expression.

Returns

References NUnit.Framework.Constraints.ConstraintBuilder.Resolve().

ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.Append ( ConstraintOperator  op)
inline

Appends an operator to the expression and returns the resulting expression itself.

References NUnit.Framework.Constraints.ConstraintBuilder.Append().

ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.Append ( SelfResolvingOperator  op)
inline

Appends a self-resolving operator to the expression and returns a new ResolvableConstraintExpression.

References NUnit.Framework.Constraints.ConstraintBuilder.Append().

Constraint NUnit.Framework.Constraints.ConstraintExpression.Append ( Constraint  constraint)
inline

Appends a constraint to the expression and returns that constraint, which is associated with the current state of the expression being built. Note that the constraint is not reduced at this time. For example, if there is a NotOperator on the stack we don't reduce and return a NotConstraint. The original constraint must be returned because it may support modifiers that are yet to be applied.

References NUnit.Framework.Constraints.ConstraintBuilder.Append().

ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.Exactly ( int  expectedCount)
inline

Returns a ConstraintExpression, which will apply the following constraint to all members of a collection, succeeding only if a specified number of them succeed.

Referenced by NUnit.Framework.Has.Exactly().

ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.Attribute ( Type  expectedType)
inline

Returns a new AttributeConstraint checking for the presence of a particular attribute on an object.

Referenced by NUnit.Framework.Has.Attribute().

Returns a new AttributeConstraint checking for the presence of a particular attribute on an object.

Constraint NUnit.Framework.Constraints.ConstraintExpression.Matches< TActual > ( Predicate< TActual >  predicate)
inline

Returns the constraint provided as an argument - used to allow custom custom constraints to easily participate in the syntax.

SameAsConstraint NUnit.Framework.Constraints.ConstraintExpression.SameAs ( object  expected)
inline

Returns a constraint that tests that two references are the same object

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.CollectionContainsTests().

GreaterThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintExpression.GreaterThanOrEqualTo ( object  expected)
inline

Returns a constraint that tests whether the actual value is greater than or equal to the supplied argument

GreaterThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintExpression.AtLeast ( object  expected)
inline

Returns a constraint that tests whether the actual value is greater than or equal to the supplied argument

LessThanConstraint NUnit.Framework.Constraints.ConstraintExpression.LessThan ( object  expected)
inline
LessThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintExpression.LessThanOrEqualTo ( object  expected)
inline

Returns a constraint that tests whether the actual value is less than or equal to the supplied argument

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.AllItemsTests().

LessThanOrEqualConstraint NUnit.Framework.Constraints.ConstraintExpression.AtMost ( object  expected)
inline

Returns a constraint that tests whether the actual value is less than or equal to the supplied argument

Returns a constraint that tests whether the actual value is of the exact type supplied as an argument.

Returns a constraint that tests whether the actual value is of the type supplied as an argument or a derived type.

AssignableFromConstraint NUnit.Framework.Constraints.ConstraintExpression.AssignableFrom ( Type  expectedType)
inline

Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument.

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.AssignableFromTypeTests().

Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument.

AssignableToConstraint NUnit.Framework.Constraints.ConstraintExpression.AssignableTo ( Type  expectedType)
inline

Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument.

Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument.

CollectionEquivalentConstraint NUnit.Framework.Constraints.ConstraintExpression.EquivalentTo ( IEnumerable  expected)
inline

Returns a constraint that tests whether the actual value is a collection containing the same elements as the collection supplied as an argument.

Referenced by NUnit.Framework.CollectionAssert.AreNotEquivalent(), and NUnit.Framework.Tests.AssertSyntaxTests.CollectionEquivalenceTests().

CollectionSubsetConstraint NUnit.Framework.Constraints.ConstraintExpression.SubsetOf ( IEnumerable  expected)
inline

Returns a constraint that tests whether the actual value is a subset of the collection supplied as an argument.

Referenced by NUnit.Framework.CollectionAssert.IsNotSubsetOf(), and NUnit.Framework.Tests.AssertSyntaxTests.SubsetTests().

CollectionSupersetConstraint NUnit.Framework.Constraints.ConstraintExpression.SupersetOf ( IEnumerable  expected)
inline

Returns a constraint that tests whether the actual value is a superset of the collection supplied as an argument.

Referenced by NUnit.Framework.CollectionAssert.IsNotSupersetOf().

CollectionContainsConstraint NUnit.Framework.Constraints.ConstraintExpression.Member ( object  expected)
inline

Returns a new CollectionContainsConstraint checking for the presence of a particular object in the collection.

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.CollectionContainsTests(), and NUnit.Framework.CollectionAssert.DoesNotContain().

ContainsConstraint NUnit.Framework.Constraints.ConstraintExpression.Contains ( string  expected)
inline

Returns a new ContainsConstraint. This constraint will, in turn, make use of the appropriate second-level constraint, depending on the type of the actual argument. This overload is only used if the item sought is a string, since any other type implies that we are looking for a collection member.

ContainsConstraint NUnit.Framework.Constraints.ConstraintExpression.Contain ( string  expected)
inline

Returns a new ContainsConstraint. This constraint will, in turn, make use of the appropriate second-level constraint, depending on the type of the actual argument. This overload is only used if the item sought is a string, since any other type implies that we are looking for a collection member.

Referenced by NUnit.Framework.StringAssert.DoesNotContain().

SubstringConstraint NUnit.Framework.Constraints.ConstraintExpression.StringContaining ( string  expected)
inline

Returns a constraint that succeeds if the actual value contains the substring supplied as an argument.

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.AllItemsTests(), and NUnit.Framework.Tests.AssertSyntaxTests.SubstringTests().

SubstringConstraint NUnit.Framework.Constraints.ConstraintExpression.ContainsSubstring ( string  expected)
inline

Returns a constraint that succeeds if the actual value contains the substring supplied as an argument.

Referenced by NUnit.Framework.Constraints.ConstraintFactory.DoesNotContain().

StartsWithConstraint NUnit.Framework.Constraints.ConstraintExpression.StartWith ( string  expected)
inline

Returns a constraint that succeeds if the actual value starts with the substring supplied as an argument.

Referenced by NUnit.Framework.StringAssert.DoesNotStartWith().

StartsWithConstraint NUnit.Framework.Constraints.ConstraintExpression.StartsWith ( string  expected)
inline
StartsWithConstraint NUnit.Framework.Constraints.ConstraintExpression.StringStarting ( string  expected)
inline

Returns a constraint that succeeds if the actual value starts with the substring supplied as an argument.

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.StartsWithTests().

EndsWithConstraint NUnit.Framework.Constraints.ConstraintExpression.EndWith ( string  expected)
inline

Returns a constraint that succeeds if the actual value ends with the substring supplied as an argument.

Referenced by NUnit.Framework.StringAssert.DoesNotEndWith().

EndsWithConstraint NUnit.Framework.Constraints.ConstraintExpression.EndsWith ( string  expected)
inline

Returns a constraint that succeeds if the actual value ends with the substring supplied as an argument.

Referenced by NUnit.Framework.Constraints.ConstraintFactory.DoesNotEndWith().

EndsWithConstraint NUnit.Framework.Constraints.ConstraintExpression.StringEnding ( string  expected)
inline

Returns a constraint that succeeds if the actual value ends with the substring supplied as an argument.

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.EndsWithTests().

RegexConstraint NUnit.Framework.Constraints.ConstraintExpression.Match ( string  pattern)
inline

Returns a constraint that succeeds if the actual value matches the regular expression supplied as an argument.

RegexConstraint NUnit.Framework.Constraints.ConstraintExpression.Matches ( string  pattern)
inline

Returns a constraint that succeeds if the actual value matches the regular expression supplied as an argument.

RegexConstraint NUnit.Framework.Constraints.ConstraintExpression.StringMatching ( string  pattern)
inline

Returns a constraint that succeeds if the actual value matches the regular expression supplied as an argument.

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.RegularExpressionTests().

SamePathConstraint NUnit.Framework.Constraints.ConstraintExpression.SamePath ( string  expected)
inline

Returns a constraint that tests whether the path provided is the same as an expected path after canonicalization.

SubPathConstraint NUnit.Framework.Constraints.ConstraintExpression.SubPathOf ( string  expected)
inline

Returns a constraint that tests whether the path provided is the a subpath of the expected path after canonicalization.

SamePathOrUnderConstraint NUnit.Framework.Constraints.ConstraintExpression.SamePathOrUnder ( string  expected)
inline

Returns a constraint that tests whether the path provided is the same path or under an expected path after canonicalization.

RangeConstraint NUnit.Framework.Constraints.ConstraintExpression.InRange ( IComparable  from,
IComparable  to 
)
inline

Returns a constraint that tests whether the actual value falls within a specified range.

Member Data Documentation

ConstraintBuilder NUnit.Framework.Constraints.ConstraintExpression.builder
protected

The ConstraintBuilder holding the elements recognized so far

Property Documentation

ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.No
get

Returns a ConstraintExpression that negates any following constraint.

ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.All
get

Returns a ConstraintExpression, which will apply the following constraint to all members of a collection, succeeding if all of them succeed.

ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.Some
get

Returns a ConstraintExpression, which will apply the following constraint to all members of a collection, succeeding if at least one of them succeeds.

ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.None
get

Returns a ConstraintExpression, which will apply the following constraint to all members of a collection, succeeding if all of them fail.

ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.Length
get

Returns a new ConstraintExpression, which will apply the following constraint to the Length property of the object being tested.

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.CollectionContainsTests(), and NUnit.Framework.Tests.AssertSyntaxTests.PropertyTests().

ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.Count
get

Returns a new ConstraintExpression, which will apply the following constraint to the Count property of the object being tested.

Referenced by NUnit.Framework.Syntax.ArbitraryConstraintMatching.ApplyMatchesToProperty().

ResolvableConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.InnerException
get

Returns a new ConstraintExpression, which will apply the following constraint to the InnerException property of the object being tested.

ConstraintExpression NUnit.Framework.Constraints.ConstraintExpression.With
get
TrueConstraint NUnit.Framework.Constraints.ConstraintExpression.True
get

Returns a constraint that tests for True

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.NotTests().

FalseConstraint NUnit.Framework.Constraints.ConstraintExpression.False
get

Returns a constraint that tests for False

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.NotTests().

GreaterThanConstraint NUnit.Framework.Constraints.ConstraintExpression.Positive
get

Returns a constraint that tests for a positive value

LessThanConstraint NUnit.Framework.Constraints.ConstraintExpression.Negative
get

Returns a constraint that tests for a negative value

NaNConstraint NUnit.Framework.Constraints.ConstraintExpression.NaN
get

Returns a constraint that tests for NaN

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.NotTests().

EmptyConstraint NUnit.Framework.Constraints.ConstraintExpression.Empty
get
UniqueItemsConstraint NUnit.Framework.Constraints.ConstraintExpression.Unique
get

Returns a constraint that tests whether a collection contains all unique items.

Referenced by NUnit.Framework.Tests.AssertSyntaxTests.AllItemsTests().

BinarySerializableConstraint NUnit.Framework.Constraints.ConstraintExpression.BinarySerializable
get

Returns a constraint that tests whether an object graph is serializable in binary format.

XmlSerializableConstraint NUnit.Framework.Constraints.ConstraintExpression.XmlSerializable
get

Returns a constraint that tests whether an object graph is serializable in xml format.

CollectionOrderedConstraint NUnit.Framework.Constraints.ConstraintExpression.Ordered
get

Returns a constraint that tests whether a collection is ordered


The documentation for this class was generated from the following file: