Tagged Questions

1
vote
1answer
36 views

Unit Testing interface contracts in C#

Using the Code Contracts tools available in VS2010 Beta 2, I have defined an interface, a contract class for that interface and two classes that implement the interface. Now when I come to test the …
2
votes
0answers
22 views

How can I use Code Contracts in a C++/CLI project?

I recently stumbled upon Code Contracts and have started using them in my C# projects. However, I also have a number of projects written in C++/CLI. For C# and VB, Code Contracts offer a handy …
3
votes
3answers
106 views

Enforcing the correct implementation of INotifyPropertyChanged with CodeContracts - “requires unproven”

I'm looking for an easy way to enforce the correct implementation of INotifyPropertyChanged i.e. when PropertyChanged is raised it must reference a property that is actually defined. I tried doing …
3
votes
3answers
306 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' …
2
votes
2answers
82 views

Is there any way to make Code Contracts work with LINQ?

Code Contracts keep giving me "Possibly calling a method on a null reference" warnings for all of my LINQ statements, and I can't find a way to silence them. For example, the following method …
4
votes
3answers
150 views

Code Contracts in .NET 4.0, no joy for non-nullable reference types fans?

I've been playing with Code Contracts on VS2008 (http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx). They surely are nice and provide a solid alternative to if-then-throw checks inside methods. …
4
votes
1answer
66 views

Any alternatives to the .Net 4 Code Contracts static analyser?

It seems that the static analyser for use with the .NET 4.0 Code Contracts is only going to be available for Team Suite editions of Visual Studio - this puts it well outside the budget for my team. …
3
votes
2answers
120 views

Code Contracts and type conversion

Hello. I've tried to embrace Microsoft DevLabs Code Contracts static analyzer and faced situation when I do not actually know is it me or is it them. So here is the code: public static int …
0
votes
2answers
68 views

How will using Code Contracts in my web project affect deployment?

If code contracts are used in an application then do we need to install anything (from Code Contracts package) on production server like putting assemblies into GAC or running code contracts …
0
votes
0answers
27 views

How to use Code Contracts with query?

Hi...I am fairly new to Code Contracts...and I ran into a problem. I have in a method LINQ query that go something like this: MyClass[] fields = (from p in rType.GetProperties() …
0
votes
0answers
38 views

Exclude System.Diagnostics.Contracts When Using PartCover

I am trying out the .net Code Contracts fro .net 3.5 I have some unit test that I am running PartCover over to calculate the code coverage. PartCover keeps including the System.Diagnostics.Contracts …
0
votes
1answer
48 views

CodeContracts: How to fullfill Require in Ctor using this() call?

I'm playing around with Microsoft's CodeContracts and encountered a problem I was unable to solve. I've got a class with two constructors: public Foo (public float f) { Contracts.Require(f > …
8
votes
4answers
181 views

.NET 4.0 code contracts - How will they affect unit testing?

For example this article introduces them. What is the benefit? Static analysis seems cool but at the same time it would prevent the ability to pass null as a parameter in unit test. (if you …
0
votes
1answer
61 views

What binary rewriter is used to implement Microsoft’s Code Contracts?

I am talking about those Code Contracts that will end up in .NET 4.0. What binary rewriter do they use to inject the code that makes it all work and is it publicly available? I hope it's not just a …
4
votes
3answers
279 views

How free can I be in the code in an object invariant?

I'm trying to demonstrate invariants in Code Contracts, and I thought I'd give an example of a sorted list of strings. It maintains an array internally, with spare space for additions etc - just like …

1 2 next
15 30 50 per page