Skip to main content

DevLabs: Code Contracts


Code Contracts

Code Contracts provide a language-agnostic way to express coding assumptions in .NET programs.

Note: There is now just one version that works with every edition of Visual Studio (except Express) and includes the static checker!

The contracts take the form of pre-conditions, post-conditions, and object invariants. Contracts act as checked documentation of your external and internal APIs. The contracts are used to improve testing via runtime checking, enable static contract verification, and documentation generation. Code Contracts bring the advantages of design-by-contract programming to all .NET programming languages. We currently provide three tools:

  • Runtime Checking. Our binary rewriter modifies a program by injecting the contracts, which are checked as part of program execution. Rewritten programs improve testability: each contract acts as an oracle, giving a test run a pass/fail indication. Automatic testing tools, such as Pex, take advantage of contracts to generate more meaningful unit tests by filtering out meaningless test arguments that don't satisfy the pre-conditions.
  • Static Checking. Our static checker can decide if there are any contract violations without even running the program! It checks for implicit contracts, such as null dereferences and array bounds, as well as the explicit contracts.
  • Documentation Generation. Our documentation generator augments existing XML doc files with contract information. There are also new style sheets that can be used with Sandcastle so that the generated documentation pages have contract sections.

Code Contracts installs if you have any edition of Visual Studio other than the Express edition. It includes the static checker and the binary rewriter (for runtime checking). It also contains a stand-alone contract library (for use with .NET projects that target a runtime earlier than version 4),  the contract assembly generator, a set of contract assemblies for the .NET Framework, and user documentation.

See more DevLabs projects >


Feedback

Give feedback about Code Contracts in the DevLabs Forums.

Code Contracts

Code Contracts conflicts with custom SettingsProvider
I'm using Code Contracts in my project (static & runtime), and I'm trying to implement a custom class derived from System.Configuration.SettingsPr... more
Sunday, Dec 23
Hinting the static checker for 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 read... more
Saturday, Dec 22
No warnings for conditions from referenced assembly.
I have two class libraries each performing static checking, Framework.Testing references Framework.Core and although Framework.Testing can clearly see... more
Friday, Dec 21
Suggestion: Convention over Configuration
Hello, I find the attributes really redundant because I'm following a certain convention (and I'm sure most developer do) so I wonder whether it's pos... more
Monday, Dec 17
Featured Video

Getting Started with Code Contracts in Visual Studio 2008

 

 

 

Get Code Contracts

Code Contracts provide a language-agnostic way to express coding assumptions in .NET programs.

Get Started

Download Code Contracts.
Read the Code Contracts documentation.


Requirements

  • Development Tools: Any version of Visual Studio other than the Express edition