Tagged Questions
Code Contracts is a Microsoft Research project which allows you to express contracts such as pre-conditions, post-conditions, and assertions directly in code.
35
votes
5answers
4k views
ReSharper - Possible Null Assignment when using Microsoft.Contracts
Is there any way to indicate to ReSharper that a null reference won't occur because of Design-by-Contract Requires checking? For example, the following code will raise the warning (Possible 'null' ...
26
votes
4answers
2k views
How mature is the Microsoft Code Contracts framework?
Microsoft has recently put a release of their Code Contracts framework on DevLabs with a commercial license. We're interested on using them in our project (mostly C#, some C++/CLI) to gradually ...
24
votes
6answers
776 views
Really trying to like CodeContracts in C#
First post, so please be kind...
I am finally playing catchup with everything new that has been added in to the .NET 3.5/4.0 Frameworks. The last few days I have been working with CodeContracts and I ...
23
votes
2answers
699 views
Contract.Requires throwing pex errors [closed]
Possible Duplicate:
How Do You Configure Pex to Respect Code Contracts?
Currently, when I run a pex exploration, the code contracts I created in my classes are being treated as errors in ...
22
votes
4answers
2k views
.NET 4.0 code contracts - How will they affect unit testing?
For example this article introduces them.
What is the benefit?
Static analysis seems cool but at the same time it would prevent the ability to pass null as a parameter in unit test. (if you ...
22
votes
2answers
749 views
Should the Code Contracts static checker be able to check arithmetic bound?
(Also posted on the MSDN forum - but that doesn't get much traffic, as far as I can see.)
I've been trying to provide an example of Assert and Assume. Here's the code I've got:
public static int ...
18
votes
2answers
380 views
.NET exception caught is unexpectedly null
See below for an explanation of what is going on
I have a really weird issue where the exception caught is null.
The code uses MEF and tries hard to report composition errors. Using the debugger I ...
18
votes
2answers
447 views
C# Code Contracts: What can be statically proven and what can't?
I might say I'm getting quite familiar with Code Contracts: I've read and understood most of the user manual and have been using them for quite a while now, but I still have questions. When I search ...
18
votes
1answer
3k views
C#: Code Contracts vs. normal parameter validation
consider the following two pieces of code:
public static Time Parse(string value)
{
string regXExpres =
"^([0-9]|[0-1][0-9]|2[0-3]):([0-9]|[0-5][0-9])$|^24:(0|00)$";
...
15
votes
2answers
286 views
How to combine defensive programming techniques together?
The question I want to ask you is quite wide but in the same time it's very concrete. First, I have to say, that I mostly interested in answers which are applicable in the .net environment.
Well, I ...
15
votes
1answer
1k views
Microsoft Code Contracts and CI build server
We are migrating to .NET 4 and very interested in implementing new Design By Contract capabilities.
As we know Code Contract engine requires installation of Code Contract addin
and VS Ultimate or ...
14
votes
1answer
901 views
Why is ccrewrite.exe not doing anything from the command line?
I've got Code Contracts working fine from inside Visual Studio 2010, but I can't get ccrewrite.exe to do anything useful from the command line. Here's a sample app:
using ...
13
votes
3answers
749 views
How free can I be in the code in an object invariant?
I'm trying to demonstrate invariants in Code Contracts, and I thought I'd give an example of a sorted list of strings. It maintains an array internally, with spare space for additions etc - just like ...
11
votes
4answers
554 views
Can one make Code Analysis understand Code Contracts?
When using Code Analysis and Code Contracts in combination, I get a lot of warnings like
CA1062: Microsoft.Design : In externally visible method 'Foo.Bar(Log)', validate parameter 'log' before using ...
11
votes
3answers
584 views
What is a practical usage of Code Contracts in .NET 4.0?
In order to fully understand and take advantage of the new features and enhancements provided with the coming of the new .NET Framework 4.0, I would like to get an example of real-world application of ...
10
votes
5answers
230 views
Should we allow null/empty parameters?
I recently had a discussion with a co-worker on whether we should allow null or empty collections to be passed as method parameters. My feeling is that this should cause an exception, as it breaks the ...
10
votes
1answer
506 views
Code Contracts Vs. Object Initializers (.net 4.0)
At face value, it would seem that object initializers present a problem for .net 4.0 "code contracts", where normally the invariant should be established by the time the object constructor is ...
9
votes
3answers
121 views
Is Code Contracts failing to spot obvious relationship between Nullable<T>.HasValue and null?
I am experimenting with applying Code Contracts to my code and I've hit a perplexing problem.
This code is failing to meet the contract but unless I'm being really thick I would expect it to be able ...
9
votes
3answers
293 views
Comparing design by contract to type systems
I recently read a paper that compared Design-by-Contract to Test-Driven-Development. There seems to be lot of overlap, some redundancy, and a little bit of synergy between the DbC and TDD. For ...
9
votes
1answer
97 views
How can I specify code contracts for existing framework (BCL) code?
Code contracts work great until you have to add a bazillion Contract.Assume(...) for the results coming out of framework code. For instance, MemoryStream.ToArray() never returns a null array, as best ...
9
votes
5answers
580 views
Design by contracts and constructors
I am implementing my own ArrayList for school purposes, but to spice up things a bit I'm trying to use C# 4.0 Code Contracts. All was fine until I needed to add Contracts to the constructors. Should I ...
9
votes
2answers
700 views
Any alternatives to the .Net 4 Code Contracts static analyser?
It seems that the static analyser for use with the .NET 4.0 Code Contracts is only going to be available for Team Suite editions of Visual Studio - this puts it well outside the budget for my team.
...
8
votes
1answer
144 views
Contract preconditions in an empty-body constructor
Good morning! I'm writing a class for drawing histograms and, for user's convenience, I've decided to add a few convenience constructors.
However, as soon as I recently switched to .NET code ...
8
votes
1answer
138 views
Collection Contracts and Threading
Suppose I have a custom collection class that provides some internal thread synchronization. For instance, a simplified Add method might look like this:
public void Add(T item)
{
...
8
votes
3answers
2k views
How come you cannot catch Code Contract exceptions?
System.Diagnostics.Contracts.ContractException is not accessiable in my test project. Note this code is purely myself messing around with my shiney new copy of Visual Studio, but I'd like to know what ...
8
votes
2answers
660 views
Code Contracts: How do I supply a contract class for a generic interface?
I'd like to specify a contract for this generic interface, using Code Contracts:
interface IRandomWriteAccessible<T>
{
T this[uint index] { set; }
uint Length { get; }
}
The ...
7
votes
3answers
193 views
Auto-implemented properties with non null guard clause?
I do agree with Mark Seeman's notion that Automatic Properties are somewhat evil as they break encapsulation. However I do like the concise syntax, readability and convenience they bring.
I quote:
...
7
votes
2answers
350 views
Code contracts, forall and custom enumerable
I am using C# 4.0 and Code Contracts
and i have my own custom GameRoomCollection : IEnumerable<GameRoom>.
I want to ensure, that no instances of gameroomcollection will ever contain a null ...
7
votes
1answer
373 views
How do I use code contracts in .NET 4.0 without making my code look cluttered?
I have started using Code Contracts and have found that it makes it difficult to immediately spot the 'guts' of a method.
Take this (very simple) example:
public static void UserAddNew(string ...
7
votes
1answer
168 views
JavaScript Code Contract Libraries?
I am just starting up a new web application and I want to implement some form of contract'esque style validation in my JavaScript. I did some quick googling, and came across JsContact but the syntax ...
7
votes
2answers
391 views
When should one use Code contracts that comes with C# 4.0?
I was going through a question on SO which was about new features of c# 4.0 and jon skeet's answer had Code Contracts feature of C# 4.0.. But i really cant understand when to use them.. Any ...
7
votes
1answer
203 views
Why contract is malformed when using default(Type)?
When compiling code which uses code contracts, I have a very strange error I don't understand.
[ContractInvariantMethod]
private void ObjectInvariant()
{
Contract.Invariant(
...
7
votes
2answers
375 views
Code contracts for .NET 3.5 messes up VS10's debugger
I've recently migrated a lot of manual precondition testing and exception throwing with code contracts. Instead of upgrading to .NET 4, I've been using the Microsoft.Contracts.dll assembly so I could ...
7
votes
2answers
712 views
So do C#4.0 Code Contracts Actually Do Anything?
After reading about the System.Diagnostics.Contracts.Contract static class that has been influenced by the awesomeness of Spec# I was thrilled and immediately started peppering my code with calls to ...
7
votes
2answers
940 views
Code Contracts: Do we have to specify Contract.Requires(…) statements redundantly in delegating methods?
I'm intending to use the new .NET 4 Code Contracts feature for future development. This made me wonder if we have to specify equivalent Contract.Requires(...) statements redundantly in a chain of ...
7
votes
4answers
230 views
Bug in iterators with code contracts?
The following code fails on the pre condition. Is this a bug in code contracts?
static class Program
{
static void Main()
{
foreach (var s in Test(3))
{
...
6
votes
2answers
106 views
Should I turn on runtime checking of code contracts for .NET 4.0 on release builds?
Assuming all new .NET 4.0 code
I see that there is the option to turn them on. However I don't see what the best practice is?
Is the best practice that once static checking is done, you really ...
6
votes
5answers
189 views
Code Contract, inheritance and Liskov Principle
I have in my code the concept of command :
public abstract class BaseCommand
{
public BaseCommand() { this.CommandId = Guid.NewGuid(); this.State = CommandState.Ready; }
public Guid CommandId ...
6
votes
1answer
203 views
Why does Code Contracts shows “Malformed contract. Found Requires after assignment” in method with params keywork?
I've been troubleshooting with this error for hours and I can't seem to understand why this happens. Consider the following code:
using System;
using System.Diagnostics.Contracts;
using ...
6
votes
2answers
208 views
Why is this string-based Contract.Ensure call unproven?
I have the following code in my .Net 4 app:
static void Main(string[] args) {
Func();
}
static string S = "1";
static void Func() {
Contract.Ensures(S != Contract.OldValue(S));
S = S + ...
6
votes
2answers
487 views
Pros/cons of different methods for testing preconditions?
Off the top of my head, I can think of 4 ways to check for null arguments:
Debug.Assert(context != null);
Contract.Assert(context != null);
Contract.Requires(context != null);
if (context == null) ...
6
votes
1answer
876 views
Microsoft Code Contracts without Visual Studio
This stack overflow question:
Microsoft Code Contracts and CI build server
asks how to get code contracts working on a build server without installing Visual Studio 2010. We're trying to do the ...
6
votes
3answers
457 views
Does code contracts really help unit testing?
I have fair amount of knowledge on unit testing. I have been trying to read about code contracts. Does it really help unit testing? Is it over-rated especially when we talk about code-contract helping ...
6
votes
1answer
444 views
Using Contract.ForAll in Code Contracts
Okay, I have yet another Code Contracts question. I have a contract on an interface method that looks like this (other methods omitted for clarity):
[ContractClassFor(typeof(IUnboundTagGroup))]
...
6
votes
3answers
313 views
How to avoid “source !=null” when using Code Contracts and Linq To Sql?
I have the following code using a normal data context which works great:
var dc = new myDataContext();
Contract.Assume(dc.Cars!= null);
var cars = (from c in dc.Cars
where c.Owner == ...
6
votes
6answers
303 views
F# and statically checked union cases
Soon me and my brother-in-arms Joel will release version 0.9 of Wing Beats. It's an internal DSL written in F#. With it you can generate XHTML. One of the sources of inspiration have been the XHTML.M ...
6
votes
1answer
698 views
Question about [Pure] methods
Is the following method Pure? I'd say so, as it doesn't change in anyway the current class, thus, everything we can now currenly "see" in the class, before running this method will still be exactly ...
6
votes
2answers
197 views
How does Contract.Exists add value?
I am just starting to learn about the code contracts library that comes standard with VS2010. One thing I am running into right away is what some of the contract clauses really mean.
For example, how ...
6
votes
5answers
470 views
CodeContracts: Possibly calling a method on a null reference
I'm having an argument with the CodeContracts static analysis tool.
My code:
(ASCII version)
The tool tells me that instance.bar may be a null reference. I believe the opposite.
Who is right? ...
6
votes
3answers
457 views
How good idea is it to use code contracts in Visual Studio 2010 Professional (ie. no static checking) for class libraries?
I create class libraries, some which are used by others around the world, and now that I'm starting to use Visual Studio 2010 I'm wondering how good idea it is for me to switch to using code ...