IGLib
1.7.2
The IGLib base library EXTENDED - with other lilbraries and applications.
|
The Iz class is a synonym for Is intended for use in VB, which regards Is as a keyword. More...
Additional Inherited Members | |
![]() | |
static EqualConstraint | EqualTo (object expected) |
Returns a constraint that tests two items for equality More... | |
static SameAsConstraint | SameAs (object expected) |
Returns a constraint that tests that two references are the same object More... | |
static GreaterThanConstraint | GreaterThan (object expected) |
Returns a constraint that tests whether the actual value is greater than the supplied argument More... | |
static GreaterThanOrEqualConstraint | GreaterThanOrEqualTo (object expected) |
Returns a constraint that tests whether the actual value is greater than or equal to the supplied argument More... | |
static GreaterThanOrEqualConstraint | AtLeast (object expected) |
Returns a constraint that tests whether the actual value is greater than or equal to the supplied argument More... | |
static LessThanConstraint | LessThan (object expected) |
Returns a constraint that tests whether the actual value is less than the supplied argument More... | |
static LessThanOrEqualConstraint | LessThanOrEqualTo (object expected) |
Returns a constraint that tests whether the actual value is less than or equal to the supplied argument More... | |
static LessThanOrEqualConstraint | AtMost (object expected) |
Returns a constraint that tests whether the actual value is less than or equal to the supplied argument More... | |
static ExactTypeConstraint | TypeOf (Type expectedType) |
Returns a constraint that tests whether the actual value is of the exact type supplied as an argument. More... | |
static ExactTypeConstraint | TypeOf< TExpected > () |
Returns a constraint that tests whether the actual value is of the exact type supplied as an argument. More... | |
static 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... | |
static 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... | |
static AssignableFromConstraint | AssignableFrom (Type expectedType) |
Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument. More... | |
static AssignableFromConstraint | AssignableFrom< TExpected > () |
Returns a constraint that tests whether the actual value is assignable from the type supplied as an argument. More... | |
static AssignableToConstraint | AssignableTo (Type expectedType) |
Returns a constraint that tests whether the actual value is assignable to the type supplied as an argument. More... | |
static AssignableToConstraint | AssignableTo< TExpected > () |
Returns a constraint that tests whether the actual value is assignable to the type supplied as an argument. More... | |
static 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... | |
static CollectionSubsetConstraint | SubsetOf (IEnumerable expected) |
Returns a constraint that tests whether the actual value is a subset of the collection supplied as an argument. More... | |
static CollectionSupersetConstraint | SupersetOf (IEnumerable expected) |
Returns a constraint that tests whether the actual value is a superset of the collection supplied as an argument. More... | |
static SubstringConstraint | StringContaining (string expected) |
Returns a constraint that succeeds if the actual value contains the substring supplied as an argument. More... | |
static StartsWithConstraint | StringStarting (string expected) |
Returns a constraint that succeeds if the actual value starts with the substring supplied as an argument. More... | |
static EndsWithConstraint | StringEnding (string expected) |
Returns a constraint that succeeds if the actual value ends with the substring supplied as an argument. More... | |
static RegexConstraint | StringMatching (string pattern) |
Returns a constraint that succeeds if the actual value matches the regular expression supplied as an argument. More... | |
static SamePathConstraint | SamePath (string expected) |
Returns a constraint that tests whether the path provided is the same as an expected path after canonicalization. More... | |
static SubPathConstraint | SubPathOf (string expected) |
Returns a constraint that tests whether the path provided is a subpath of the expected path after canonicalization. More... | |
static 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... | |
static RangeConstraint | InRange (IComparable from, IComparable to) |
Returns a constraint that tests whether the actual value falls inclusively within a specified range. More... | |
![]() | |
static ConstraintExpression | Not [get] |
Returns a ConstraintExpression that negates any following constraint. More... | |
static 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... | |
static NullConstraint | Null [get] |
Returns a constraint that tests for null More... | |
static TrueConstraint | True [get] |
Returns a constraint that tests for True More... | |
static FalseConstraint | False [get] |
Returns a constraint that tests for False More... | |
static GreaterThanConstraint | Positive [get] |
Returns a constraint that tests for a positive value More... | |
static LessThanConstraint | Negative [get] |
Returns a constraint that tests for a negative value More... | |
static NaNConstraint | NaN [get] |
Returns a constraint that tests for NaN More... | |
static EmptyConstraint | Empty [get] |
Returns a constraint that tests for empty More... | |
static UniqueItemsConstraint | Unique [get] |
Returns a constraint that tests whether a collection contains all unique items. More... | |
static BinarySerializableConstraint | BinarySerializable [get] |
Returns a constraint that tests whether an object graph is serializable in binary format. More... | |
static XmlSerializableConstraint | XmlSerializable [get] |
Returns a constraint that tests whether an object graph is serializable in xml format. More... | |
static CollectionOrderedConstraint | Ordered [get] |
Returns a constraint that tests whether a collection is ordered More... | |