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

Static Checker problem with LINQ's Contains()
Hello Guys,I'm using VS 2010 Ultimate and the latest version of Code Contracts (1.4.50126.1).I've noticed and "isolated" a problem with st... más
martes, feb 21
Not getting squigglies on Static Analysis on EnsuresOnThrow
Hullo,I have the following example method:static List<DbEntity> _entities = new List<DbEntity>();public static bool InsertIntoTheDataba... más
martes, feb 21
Code Contracts.
I heard about code contracts quite a while, butonly now I've become interested in it. At first glance,it seems like a good thing, but I know nothing... más
sábado, feb 18
Tab Missing Even After Installing the tools
I installed the code contacts tools library on a Windows Server 2008 while setting up my build server. Once installed the code contracts tab is not sh... más
sábado, feb 18
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