vote up 1 vote down star

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.

flag

Either I'm going blind or it's not defined on the NUnit website / docs. – Craig Walker Mar 27 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 at 1:49

3 Answers

vote up 1 vote down

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|flag
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 at 14:03
vote up 3 vote down

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|flag
vote up 2 vote down check

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

link|flag

Your Answer

Get an OpenID
or

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