vote up 6 vote down star
2

I wanted to try a little design by contract in my latest C# application and wanted to have syntax akin to:

public string Foo()
{
    set {
        Assert.IsNotNull(value);
        Assert.IsTrue(value.Contains("bar"));
        _foo = value;
    }
}

I know I can get static methods like this from a unit test framework, but I wanted to know if something like this was already built-in to the language or if there was already some kind of framework floating around. I can write my own Assert functions, just don't want to reinvent the wheel.

flag

9 Answers

vote up 7 vote down check

Aside from using an external library, you have a simple assert in System.Diagnostics:

using System.Diagnostics

Debug.Assert(value != null);
Debug.Assert(value == true);

Not very useful, I know.

link|flag
1  
And that would be compiled out in Release builds. – Mark Brackett Nov 4 '08 at 4:15
Yes, if in Debug.* they are compiled out of release builds. – Kenny Nov 4 '08 at 10:39
vote up 5 vote down

Spec# is a popular microsoft research project that allows for some DBC constructs, like checking post and pre conditions. For example a binary search can be implemented with pre and post conditions along with loop invariants. This example and more:

 public static int BinarySearch(int[]! a, int key)
    requires forall{int i in (0: a.Length), int j in (i: a.Length); a[i] <= a[j]};
    ensures 0 <= result ==> a[result] == key;
    ensures result < 0 ==> forall{int i in (0: a.Length); a[i] != key};
 {
   int low = 0;
   int high = a.Length - 1;

   while (low <= high)
     invariant high+1 <= a.Length;
     invariant forall{int i in (0: low); a[i] != key};
     invariant forall{int i in (high+1: a.Length); a[i] != key};
   {
     int mid = (low + high) / 2;
     int midVal = a[mid];

     if (midVal < key) {
       low = mid + 1;
     } else if (key < midVal) {
       high = mid - 1;
     } else {
       return mid; // key found
     }
   }
   return -(low + 1);  // key not found.
 }

Note that using the Spec# language yields compile time checking for DBC constructs, which to me, is the best way to take advantage of DBC. Often, relying on runtime assertions becomes a headache in production and people generally elect to use exceptions instead.

There are other languages that embrace DBC concepts as first class constructs, namely Eiffel which is also available for the .NET platform.

link|flag
vote up 4 vote down

It may not be much help to you at the moment but Microsoft is releasing a library for design by contract in the .net framework 4.0. Here is the presentation from PDC:

http://channel9.msdn.com/pdc2008/TL51/

And here is the site where you can download their pre-release (unfortunately released under the research licence):

http://research.microsoft.com/contracts/

One of the coolest features of that library is that it also comes with a static analysis tools (similar to FxCop I guess) that leverages the details of the contracts you place on the code.


Update 2009/07/01: The guys over at CodeBetter have some good articles. I like these two in particular:

devlicio.us also have a good series:

link|flag
vote up 2 vote down

http://www.codeproject.com/KB/cs/designbycontract.aspx

link|flag
vote up 1 vote down

Looking over the code for Moq I saw that they use a class called 'Guard' that provides static methods for checking pre and post conditions. I thought that was neat and very clear. It expresses what I'd be thinking about when implementing design by contract checks in my code.

e.g.

public void Foo(Bar param)
{
   Guard.ArgumentNotNull(param);
}

I thought it was a neat way to express design by contract checks.

link|flag
vote up 0 vote down

You may want to check out nVentive Umbrella:

using System;
using nVentive.Umbrella.Validation;
using nVentive.Umbrella.Extensions;

namespace Namespace
{
    public static class StringValidationExtensionPoint
    {
    	public static string Contains(this ValidationExtensionPoint<string> vep, string value)
    	{
    		if (vep.ExtendedValue.IndexOf(value, StringComparison.InvariantCultureIgnoreCase) == -1)
    			throw new ArgumentException(String.Format("Must contain '{0}'.", value));

    		return vep.ExtendedValue;
    	}
    }

    class Class
    {
    	private string _foo;
    	public string Foo
    	{
    		set
    		{
    			_foo = value.Validation()
    				.NotNull("Foo")
    				.Validation()
    				.Contains("bar");
    		}
    	}
    }
}

I wish the Validation extensions were builders so you could do _foo = value.Validation().NotNull("Foo").Contains("bar").Value; but it is what it is (fortunately its open source so making it a builder is a trivial change).

And as an alternative solution you could consider domain validation.

Finally the new M languages, as part of Oslo, support restrictions on their extents and fields which translate both to T-SQL validation and a CLR class with functioning validation tests (though Oslo is a long time off from release).

link|flag
vote up 0 vote down

You can use a Design By Contract implementation from sharp-architecture. Here is the link: http://code.google.com/p/sharp-architecture/

Regards,

Liang

link|flag
vote up 0 vote down

Try LinFu's DesignByContract Library:

http://www.codeproject.com/KB/cs/LinFu_Part5.aspx

link|flag
vote up -1 vote down

Microsoft has provided Assert in its testing framework for .net

See Also: Microsoft.VisualStudio.TestTools.UnitTesting

link|flag

Your Answer

Get an OpenID
or

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