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.CollectionSupersetConstraintTests Class Reference
+ Inheritance diagram for NUnit.Framework.Constraints.CollectionSupersetConstraintTests:
+ Collaboration diagram for NUnit.Framework.Constraints.CollectionSupersetConstraintTests:

Classes

class  IgnoreCaseDataProvider
 

Public Member Functions

void SetUp ()
 
void HonorsIgnoreCase (IEnumerable expected, IEnumerable actual)
 
- Public Member Functions inherited from NUnit.Framework.Constraints.ConstraintTestBase
void SucceedsWithGoodValues (object value)
 
void FailsWithBadValues (object badValue, string message)
 
- Public Member Functions inherited from NUnit.Framework.Constraints.ConstraintTestBaseNoData
void ProvidesProperDescription ()
 
void ProvidesProperStringRepresentation ()
 

Static Private Attributes

static object[] SuccessData
 
static object[] FailureData
 

Additional Inherited Members

- Protected Attributes inherited from NUnit.Framework.Constraints.ConstraintTestBaseNoData
Constraint theConstraint
 
string expectedDescription = "<NOT SET>"
 
string stringRepresentation = "<NOT SET>"
 

Member Function Documentation

void NUnit.Framework.Constraints.CollectionSupersetConstraintTests.SetUp ( )
inline
void NUnit.Framework.Constraints.CollectionSupersetConstraintTests.HonorsIgnoreCase ( IEnumerable  expected,
IEnumerable  actual 
)
inline

Member Data Documentation

object [] NUnit.Framework.Constraints.CollectionSupersetConstraintTests.SuccessData
staticprivate
Initial value:
= new object[]
{
new int[] { 1, 2, 3, 4, 5, 6 }
, new int[] { 1, 2, 3, 4, 5 }
, new int[] { 1, 2, 2, 2, 3, 4, 5, 3 }
, new int[] { 1, 2, 2, 2, 3, 4, 5, 7 }
}
object [] NUnit.Framework.Constraints.CollectionSupersetConstraintTests.FailureData
staticprivate
Initial value:
= new object[]
{
new object[] { new int[] { 1, 3, 7 }, "< 1, 3, 7 >" }
, new object[] { new int[] { 1, 2, 2, 2, 5 }, "< 1, 2, 2, 2, 5 >" }
, new object[] { new int[] { 1, 2, 3, 5 }, "< 1, 2, 3, 5 >" }
, new object[] { new int[] { 1, 2, 3, 5, 7 }, "< 1, 2, 3, 5, 7 >" }
}

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