Tagged Questions
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' ...
4
votes
2answers
271 views
What tooling do you use to do Design by Contract?
I used to use Microsoft CodeContracts for three weeks and now half of my code is just contracts. I have dozens of unproved places, I cannot use runtime-check because IL rewrite prevents coverage tool ...
2
votes
2answers
777 views
What does it take to prove this Contract.Requires?
I have an application that runs through the rounds in a tournament, and I am getting a contract warning on this simplified code structure:
public static void LoadState(IList<Object> stuff)
...
1
vote
2answers
1k views
Microsoft.Contracts namespace
For what it is necessary Microsoft.Contracts namespace in asp.net?
I mean, in what cases I could write using Microsoft.Contracts;?
1
vote
1answer
75 views
Can Microsoft.Contracts' static checker be used without Team System?
Aside from the requirement on Visual Studio Team System to be able to install Microsoft.Contacts with the static checker, is it possible to run the static checker without team system? Or, does it ...
1
vote
1answer
227 views
Design by Contract: Can you have an Interface with a Protocol?
I'm pretty new to the concept of Design by Contract, but so far, I'm loving how easy it makes it to find potential bugs.
However, I've been working with the Microsoft.Contracts library (which is ...
0
votes
1answer
98 views
How do I set up Microsoft Contracts static checking in Visual Studio 2010?
I recently downloaded Visual Studio 2010b2, and wanted to re-evaluate some of my questions about the Microsoft contracts static checker.
I managed to re-use most of the code by using the ...
0
votes
0answers
234 views
Microsoft Contracts: Assembly load resulted in metadata import warning
I'm trying to learn my way around the Microsoft Code Contracts libraries, and I have the following simple function:
internal static Engine CreateBuildEngine(Microsoft.Build.Framework.ILogger logger)
...