NUnit.Framework.Constraints.PrefixConstraint.PassModifiersToBase()

Here are the examples of the csharp api NUnit.Framework.Constraints.PrefixConstraint.PassModifiersToBase() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

4 Examples 7

19 Source : PrefixConstraints.cs
with MIT License
from GrapeCity

public override bool Matches(object actual)
		{
			this.actual = actual;
			this.PreplacedModifiersToBase();
			return !baseConstraint.Matches(actual);
		}

19 Source : PrefixConstraints.cs
with MIT License
from GrapeCity

public override bool Matches(object actual)
		{
			this.actual = actual;

			PreplacedModifiersToBase();

			if ( !(actual is ICollection) )
				throw new ArgumentException( "The actual value must be a collection", "actual" );

			foreach(object item in (ICollection)actual)
				if (!baseConstraint.Matches(item))
					return false;

			return true;
		}

19 Source : PrefixConstraints.cs
with MIT License
from GrapeCity

public override bool Matches(object actual)
		{
			this.actual = actual;

			PreplacedModifiersToBase();

			if ( !(actual is ICollection) )
				throw new ArgumentException( "The actual value must be a collection", "actual" );

			foreach(object item in (ICollection)actual)
				if (baseConstraint.Matches(item))
					return true;

			return false;
		}

19 Source : PrefixConstraints.cs
with MIT License
from GrapeCity

public override bool Matches(object actual)
		{
			this.actual = actual;

			PreplacedModifiersToBase();

			if ( !(actual is ICollection) )
				throw new ArgumentException( "The actual value must be a collection", "actual" );

			foreach(object item in (ICollection)actual)
				if (baseConstraint.Matches(item))
					return false;

			return true;
		}