Tagged Questions
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)$";
...
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))
{
...
4
votes
1answer
658 views
.NET code contracts: can it get more basic than this?
I was just messing around to answer someone's question here on Stack Overflow, when I noticed a static verification warning from inside my Visual Studio (2008):
string[] source = { "1", "A", "B" };
...
4
votes
2answers
269 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
776 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
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
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)
...
0
votes
1answer
281 views
How do I indicate that a method never returns a null using code contracts?
How do I indicate that a method never returns a null? Currently this is my code.
Line 19 gets an Ensures not proven message, even though CreateFunction assumes that the result is not nothing.
1 ...