Assembly and Namespace for NUnit's Constraints Model - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:25:58Z http://stackoverflow.com/feeds/question/688212 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/688212/assembly-and-namespace-for-nunits-constraints-model 1 Assembly and Namespace for NUnit's Constraints Model Craig Walker 2009-03-27T01:42:34Z 2009-03-27T15:26:20Z <p>I want to use the new <a href="http://nunit.com/index.php?p=constraintModel&amp;r=2.4.8" rel="nofollow">Constraint-based model</a> in NUnit. In which assembly and namespace are the classes defined? (Specificially, I'm looking for the "Is" class and the IConstraint implementations discussed in the documentaton). They do not seem to be in NUnit.Framework.</p> <p>Also, I'm interested in v2.4.8, which as of this writing is the latest stable release.</p> http://stackoverflow.com/questions/688212/assembly-and-namespace-for-nunits-constraints-model/688575#688575 1 Answer by Steven Lyons for Assembly and Namespace for NUnit's Constraints Model Steven Lyons 2009-03-27T04:37:41Z 2009-03-27T14:22:14Z <p>Works for me with NUnit.Framework on NUnit 2.5 Beta 2. From the code for 2.4.8, looks like it's in the same class.</p> <pre><code>namespace NUnit.Framework { // Summary: // The Assert class contains a collection of static methods that implement the // most common assertions used in NUnit. public class Assert { public static void That(bool condition); public static void That(ActualValueDelegate del, IResolveConstraint expr); public static void That(bool condition, string message); public static void That(object actual, IResolveConstraint expression); public static void That&lt;T&gt;(ref T actual, IResolveConstraint constraint); public static void That(TestDelegate code, IResolveConstraint constraint); public static void That(ActualValueDelegate del, IResolveConstraint expr, string message); public static void That(bool condition, string message, params object[] args); public static void That(object actual, IResolveConstraint expression, string message); public static void That&lt;T&gt;(ref T actual, IResolveConstraint constraint, string message); public static void That(ActualValueDelegate del, IResolveConstraint expr, string message, params object[] args); public static void That(object actual, IResolveConstraint expression, string message, params object[] args); public static void That&lt;T&gt;(ref T actual, IResolveConstraint expression, string message, params object[] args); } } </code></pre> <p><code>AssertionHelper</code> is also in the same namespace.</p> <p><hr /></p> <p>For <code>Is</code> - try NUnit.Framework.SyntaxHelpers</p> http://stackoverflow.com/questions/688212/assembly-and-namespace-for-nunits-constraints-model/689885#689885 3 Answer by Craig Walker for Assembly and Namespace for NUnit's Constraints Model Craig Walker 2009-03-27T14:05:55Z 2009-03-27T15:22:48Z <p>The IConstraint implementations are in NUnit.Framework.Constraints; I got this by checking the VS Intellisense for Assert.That(). I still don't see this actually documented anywhere on NUnit.</p> <p>I'm still at a loss as to where Is is.</p> http://stackoverflow.com/questions/688212/assembly-and-namespace-for-nunits-constraints-model/690216#690216 2 Answer by Craig Walker for Assembly and Namespace for NUnit's Constraints Model Craig Walker 2009-03-27T15:26:20Z 2009-03-27T15:26:20Z <p>The Is class is in NUnit.Frameworks.SyntaxHandlers in nunit.framework.dll.</p>