up vote 1 down vote favorite
share [g+] share [fb]

I want to use the new Constraint-based model 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.

Also, I'm interested in v2.4.8, which as of this writing is the latest stable release.

link|improve this question

Either I'm going blind or it's not defined on the NUnit website / docs. – Craig Walker Mar 27 '09 at 1:43
Wow, yeah - I was having the same exact problem. NUnit should really get this in their documentation - talk about annoying... – Steven Oxley Oct 12 '09 at 1:49
feedback

3 Answers

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.

I'm still at a loss as to where Is is.

link|improve this answer
feedback
up vote 2 down vote accepted

The Is class is in NUnit.Frameworks.SyntaxHandlers in nunit.framework.dll.

link|improve this answer
feedback

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.

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<T>(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<T>(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<T>(ref T actual, IResolveConstraint expression, string message, params object[] args);
    }
}

AssertionHelper is also in the same namespace.


For Is - try NUnit.Framework.SyntaxHelpers

link|improve this answer
Sorry, I should have been more clear. Assert and AssertionHandler are indeed in NUnit.Framework, but I'm looking for Is (the constraint helper) and the IConstraing implementations. I've edited my question to reflect this. – Craig Walker Mar 27 '09 at 14:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.