Code Contracts is a Microsoft Research project which allows you to express contracts such as pre-conditions, post-conditions, and assertions directly in code.

learn more… | top users | synonyms

0
votes
1answer
12 views

Technical documentation of Code Contracts, Exceptions, Asserts, Domain Validations

I'm trying to find a common ground on how the messages should be documented in different areas of an app. Some major areas are: Assert Statements in tests Code Contracts Domain validations ...
0
votes
1answer
15 views

CodeContracts: requires unproven: (image.PixelFormat & PixelFormat.Indexed) == 0

What does the following warning in Code Contracts for Net 4.0 mean and how to fix it??? CodeContracts: requires unproven: (image.PixelFormat & PixelFormat.Indexed) == 0 I'm doing either: var bmp ...
0
votes
1answer
15 views

declare code as side-effects free using microsoft code contracts

Is there a way to declare a method as side-effects free using Microsoft Code Contracts (.net 4)?
2
votes
0answers
38 views

Prevent Resharper warning when declaring return of non-empty sequence via Contract.Ensures()?

I'm using Code Contracts to declare that a property returns a non-null, non-empty sequence of strings like so: public IEnumerable<string> Filenames { get { ...
0
votes
1answer
36 views

Is there a benefit in writing code contract instead of straight up check logic code?

We are building business application not API for others to use, in this case, I prefer to use our validation logic in the if/then/throw model. I was told, it is better to use Code Contracts. I do not ...
6
votes
2answers
84 views

Code Contracts warn of “ensures unproven” when locks are involved

I'm trying to work out how .NET Code Contracts interact with the lock keyword, using the following example: public class TestClass { private object o1 = new object(); private object o2 = new ...
2
votes
1answer
48 views

How to improve the performance of CodeContract rewriter in VS2012?

We've got a medium sized VisualStudio solution containing 60 projects. Every project contains code contracts. Since we use Contract.Requires<T> for our preconditions we need to have our ...
1
vote
2answers
54 views

Code contracts on value types

I've just started playing with code contracts, and while promising, they seem to have some limitations with respect to value types. For instance: public struct Wrap<T> where T : class { ...
0
votes
1answer
29 views

ArgumentNullException Vs Contract.Requires

The ArgumentNullException throws an exception if the argument that is passed to it is null. This happens at the runtime. What does Contract.Requires do? Is it a compile time checking or checked at ...
2
votes
2answers
44 views

Why doesn't Code Contracts static analyzer treat these property getter calls as equal?

I'm trying to set up an immutable ordered singly-linked list class using code contracts to enforce the ordering. I'm running into some problems that boil down to this example: [Pure, ...
1
vote
3answers
43 views

Contract.Requires and the Decorator Pattern. How to avoid overchecking conditions?

I currently have a command handling interface that is implemented by a few different classes for different command types. I'm using the Decorator Pattern in conjunction with an IoC container (Unity in ...
0
votes
1answer
59 views

Should I add checks for parameters which are just passed to another method?

Consider these two methods public int GetSomething(object obj) { Contract.Requires<ArgumentNullException>(obj != null); ... } public int GetSomethingWrapper(object anotherObj) { ...
2
votes
1answer
31 views

Why are Interface contracts not applying outside of assembly?

I'm having a hard time trying to ensure that the (quite simple) contracts I wrote for an interface using Code Contracts are being applied. I have this code in a "shared" dll in one of our projects. ...
1
vote
1answer
34 views

Contract.Requires in exception ctor fails with error CC1027: Malformed contract

I am trying to write an exception and on the ctor I added a Contract.Requires declaration. for some reason the compilation of this fails with error CC1027: Malformed contract I am using the latest ...
6
votes
1answer
129 views

C# code contracts - avoiding checking parameters for null references

I read today about C# 4.0 code contracts. It seems like the common practice for validating a parameter to a method isn't null is as follows: Contract.Requires(p != null); However it seems quite ...
0
votes
1answer
33 views

Proper use of CodeContract Requires

Basically I want to know if using a code contract to determine if a key exists in a ConcurrentDictionary is an acceptable use of a code contract. It doesn't feel right to me because it's more than ...
2
votes
1answer
34 views

Code contracts causing error due to potential side-effect

I am fairly new to code contracts so i may have just done something stupid here :) I am getting the error Detected expression statement evaluated for potential side-effect in contracts of ...
0
votes
0answers
22 views

How to copy Code Contracts settings when creating a new Build Configuration

When I create new build configuration and base it on existing one (for example Debug) I think that all Code Contracts settings are reset on this new configuration. So I had to manually go through ...
0
votes
2answers
80 views

Calculate Code Metrics ignoring Code Contracts

Is there anyway to calculate the Code Metrics for a VS 2010 Ultimate solution, but to omit the Code Contracts? Right now, my best idea is to do a calculation, dump the excel file, then reflect over ...
0
votes
2answers
130 views

How to undefine the symbol CONTRACTS_FULL?

Visual Studio defines the CONTRACTS_FULL symbol automatically if you enable contract checking in the Code Contracts tab of the Project Properties page. - C# 5.0 In a Nutshell (page 518) ...
0
votes
1answer
65 views

Repeated Code Asserting and Throwing

So far I've learned that (usually) when you assert, you should also throw. At first I wasn't sure it was right, it just made sense1, and then this answer verified. The problem I have is that it ...
4
votes
2answers
86 views

Entities used by ORM in combination with CodeContracts - ensure invariants

I am currently in the process of adding CodeContracts to my existing code base. One thing that proves difficult is the usage of entities that are hydrated by NHibernate. Assume this simple class: ...
9
votes
1answer
140 views

Unproven Ensure that references another property in combination with an interface

Assume the following code: [ContractClass(typeof(ICC4Contract))] public interface ICC4 { bool IsFooSet { get; } string Foo { get; } } public class CC4 : ICC4 { private string _foo; ...
9
votes
2answers
158 views

Throwing an exception vs Contract.Requires<T>?

I'm wondering whether should I throw exceptions or call Contract.Requires<TException> For example: public static void Function(String str) { if (str == null) throw new ...
1
vote
1answer
63 views

Enable static contract checker to prove a Property non-null based on some other property

Assume the following code: public class CC3 { private string _field; private bool _someFlag; public string Property { get { return _field; } } public bool SomeFlag ...
3
votes
2answers
72 views

Interface contract confuses static checker

Assume the following simple code: public class Foo // : IFoo { private string _field; public string Property { get { return _field; } } private void SetField() { ...
17
votes
1answer
299 views

“Invariant unproven” when using method that creates a specific new object in its return statement

The following simple code will yield an "invariant unproven" warning by the static checker of Code Contracts, although there is no way _foo can be null. The warning is for the return statement inside ...
2
votes
1answer
48 views

Can I run code-contracts analysis manually?

When I rebuild my C# app I often don't get the results of my code-contracts analysis. This is caused by the following error message CodeContracts: MyApp.Client.Model: Analysis method ...
0
votes
1answer
51 views

Static analysis not working on simplest possible example

The following is an example I have created in order to get the static analysis tool to fail: using System.Diagnostics.Contracts; using System; namespace ConsoleApplication1 { class Program { ...
0
votes
2answers
30 views

CodeContracts Invariant is false

VS2010 keeps telling me that a CodeContract.Invariant is false. I can't see how this can possibly be the case public class BankAccountIdentifierDefinitionVariation_CreateCommandArgs : ...
0
votes
0answers
119 views

Is Code Contract in VS 2012 still of high value? [closed]

Code Contracts Editor Extensions is a very good extension, which shows the method's preconditions and postconditions in VS editor. Unfortunately, it only support VS 2010. The Code Contracts Dev is ...
0
votes
0answers
35 views

How to use code contracts in the silverlight project (best practices)

What are the best practices for using code contracts in the silverlight (4 or 5) Project? Which settings are the best for the code-contracts for the debug and release? I use CONTRACTS_FULL, Standard ...
0
votes
3answers
330 views

Why do we need the Option type when we have code contracts/static analysis?

When designing a null safe piece of code, what's the better approach? F# and Scala has Options type that encapsulates null check, but we also have static code analysis tools like code contracts, ...
0
votes
1answer
68 views

Why does TFS2012 report build as successful if Code Contracts rewriter did not run?

I build my solution but CC tools are not installed on build server. So no rewrite was done. Now I'm curios why msbuild reports build as successfull if not all tasks were finished? P.S. I'm ...
2
votes
2answers
46 views

Is static checking performed for Contract.Ensures?

I cannot understand why static checker says that everything is ok for this method: public static int GetNonNegativeValue() { Contract.Ensures(Contract.Result<int>() >= 0); return ...
1
vote
2answers
108 views

Issue with Code Contract in c#

I am facing a problem that I can not figure out. Say I have two methods: public void Method1(object obj) in ViewModel class and public void Method2(object obj) in Model class. Method2 gets called ...
0
votes
0answers
50 views

Pex generates test data that violates Code Contract on dependency

Based on this post from Peli I am expecting that Pex will not generate stubs that will violate its contract. However, I don't get Pex to generate data that adheres to the contract. When I reproduce ...
0
votes
2answers
77 views

How to Log error while using Code Contracts

I need to log exception (even in release version) in my application. I am using a static method Log(Exception ex) of a class CLog to log the exception. I am also using Code Contracts and using both ...
3
votes
2answers
99 views

How to use TryParse in Code Contracts without getting warning

When using Code Contracts I get the warning: Detected call to method 'System.Int32.TryParse(System.String,System.Int32@)' without [Pure] in contracts of method Having a class with interface ...
0
votes
1answer
45 views

Why is the CC1033 message suppression not applied?

I am implementing the System.IServiceProvider.GetService method and I cannot suppress the warning ... implements interface method 'System.IServiceProvider.GetService(System.Type)', thus cannot add ...
1
vote
1answer
38 views

How to hint static checker to understand simple arithmetics?

I am working on an object that encapsulates a bitmap as an array of pixels. The array is one dimensional, and I store the width of the image in a readonly field. I also added a property that ...
0
votes
0answers
51 views

Code Contracts- Invariants are not rewritten

I am using VS2010 Ultimate with Code Contracts. After getting unexpected runtime behavior, I reviewed the source code in reflector and realized that my invariants are not being compiled. The ...
1
vote
2answers
79 views

Code contracts: static checking fails on IEnumerable.Min

I get some warnings on the following code containing code contracts. public static int Min(IEnumerable<int> set) { Contract.Requires(set != null); Contract.Requires(set.Any()); ...
2
votes
2answers
147 views

Code Contracts static analyzer doesn't detect trivial contract violation

I have this code: using System; using System.Diagnostics.Contracts; namespace TestCodeContracts { class Program { public static int Divide(int numerator, int denominator, out int ...
0
votes
1answer
78 views

Why is Code Contract analysis not installed by default

We're just beginning a new project and we're keen to include testing from the ground up. While we were looking at which unit test solution to use I came across Code Contracts which seem like they ...
1
vote
2answers
79 views

Controlling Code Contract references in a .nuspec

I'm using Code Contracts to generate satellite assemblies for my project. Basically it creates a MyAssembly.Contracts.dll for the project's MyAssembly.dll. This is supposed to be put beside your ...
0
votes
2answers
71 views

Code Contracts: Ensure unproven on string method

I'm playing around with code contracts and got a simple method inserting a given count of space characters between each character. e.g. Hello -> H e l l o World -> W o r l d The ...
2
votes
1answer
95 views

Ensures that object is unchanged?

Is there any way using Code Contracts to ensure/check that a method does not change any members of an object, similarly to C++ const methods or setting all the members to readonly? i.e. a simpler way ...
4
votes
2answers
135 views

Code Contracts: How to express these conditions?

I'm playing around with Code Contracts at the moment and I'm not completely sure whether the static methods of the Contract class are powerful enough to compete with mathematical notation of ...
12
votes
1answer
2k views

Code Contracts doesn't seem to work on VS2012

I'm reading up on Code Contracts, which at first glance seem to be pretty revolutionary, but I can't seem to get them working. I'm running Windows 8 and Visual Studio 2012 Premium (Release versions ...

1 2 3 4 5 8