Tagged Questions

Design by Contract (DbC) or Programming by Contract is an approach to designing computer software. It prescribes that software designers should define formal, precise and verifiable interface specifications for software components, which extend the ordinary definition of abstract data types with preconditions, postconditions and invariants. These specifications are referred to as "contracts", in accordance with a conceptual metaphor with the conditions ...

learn more… | top users | synonyms

43
votes
18answers
4k views

How much null checking is enough?

What are some guidelines for when it is not necessary to check for a null? A lot of the inherited code I've been working on as of late has null-checks ad nauseam. Null checks on trivial functions, ...
35
votes
5answers
4k 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' ...
35
votes
13answers
5k views

design by contract tests by assert or by exception?

When programming by contract a function or method first checks whether its preconditions are fulfilled, before starting to work on its responsibilities, right? The two most prominent ways to do these ...
21
votes
10answers
2k views

Does Design By Contract Work For You? [closed]

Do you use Design by Contract professionally? Is it something you have to do from the beginning of a project, or can you change gears and start to incorporate it into your software development ...
18
votes
6answers
2k views

A good Design-by-Contract library for Java?

A few years ago, I did a survey of DbC packages for Java, and I wasn't wholly satisfied with any of them. Unfortunately I didn't keep good notes on my findings, and I assume things have changed. Would ...
18
votes
7answers
2k views

Design By Contract and Test-Driven Development

I'm working on improving our group's development process, and I'm considering how best to implement Design By Contract with Test-Driven Development. It seems the two techniques have a lot of overlap, ...
15
votes
12answers
770 views

Is Java assert broken?

While poking around the questions, I recently discovered the assert keyword in Java. At first, I was excited. Something useful I didn't already know! A more efficient way for me to check the ...
15
votes
11answers
7k views

'Design By Contract' in C#

I wanted to try a little design by contract in my latest C# application and wanted to have syntax akin to: public string Foo() { set { Assert.IsNotNull(value); ...
11
votes
8answers
381 views

Do preconditions ALWAYS have to be checked?

These days I'm used to checking every single precondition for every function since I got the habit from an OS programming course back at uni. On the other hand, at the software engineering course we ...
11
votes
3answers
1k views

Java: clean way to automatically throw UnsupportedOperationException when calling hashCode() and equals()?

We've got an OO codebase where in quite a lot of cases hashcode() and equals() simply don't work, mostly for the following reason: There is no way to extend an instantiable class and add a value ...
11
votes
7answers
2k views

Ruby and duck typing: design by contract impossible?

Method signature in Java: public List<String> getFilesIn(List<File> directories) similar one in ruby def get_files_in(directories) In the case of Java, the type system gives me ...
10
votes
1answer
506 views

Code Contracts Vs. Object Initializers (.net 4.0)

At face value, it would seem that object initializers present a problem for .net 4.0 "code contracts", where normally the invariant should be established by the time the object constructor is ...
10
votes
4answers
506 views

How do you do Design by Contract in Perl?

I'm investigating using DbC in our Perl projects, and I'm trying to find the best way to verify contracts in the source (e.g. checking pre/post conditions, invariants, etc.) Class::Contract was ...
9
votes
3answers
285 views

Using Design by Contract in Python

I am looking to start using DBC on a large number of Python-based projects at work and am wondering what experiences others have had with it. So far my research turned up the following: ...
9
votes
3answers
293 views

Comparing design by contract to type systems

I recently read a paper that compared Design-by-Contract to Test-Driven-Development. There seems to be lot of overlap, some redundancy, and a little bit of synergy between the DbC and TDD. For ...
9
votes
5answers
580 views

Design by contracts and constructors

I am implementing my own ArrayList for school purposes, but to spice up things a bit I'm trying to use C# 4.0 Code Contracts. All was fine until I needed to add Contracts to the constructors. Should I ...
9
votes
3answers
376 views

Code Contracts, will you use them?

Microsoft just released Code Contracts, a tool that integrates with Visual Studio and allows you to define contracts for your .Net code and get runtime and compile time checking. Watch the video on ...
9
votes
6answers
2k views

Design By Contract vs Test Driven Development?

You may think this question is like this question asked on StackOverflow earlier. But I am trying to look at things differently. In TDD we write tests that include different conditions, criteria, ...
8
votes
6answers
329 views

checking invariants in C++

Are there any established patterns for checking class invariants in C++? Ideally, the invariants would be automatically checked at the beginning and at the end of each public member function. As far ...
8
votes
2answers
199 views

Design By Contract LIbrary(ies) for Common Lisp?

Coming from a background in Clojure, I am taken with the potential that its pre-/post-conditions provide as a basis for design by contract: ;; sqr.clj (defn sqr [n] {:pre [(not= 0 n) (number? n)] ...
8
votes
2answers
561 views

How does .NET 4.0's design by contract compare to Eiffel?

I had the "pleasure" to be taught Eiffel at college by none other than Bertrand Meyer himself and just read that .NET 4.0 will include design by contract. Can anyone with some insight elaborate on ...
7
votes
4answers
1k views

Design by Contract in C++?

Is that any library that aids in implementing design by contract principle in c++ application. EDIT: Looking for much better than ASSERT something like this
6
votes
2answers
111 views

Looking for a verifier for C++ (like VCC for C)

I would like to do design-by-contract and theorem proving of my C++ code. I'm still in the process of learning VCC, which seems to be exactly what I want, but unfortunately is for C only. VCC lets you ...
6
votes
4answers
189 views

why interfaces in dynamic/loosely-typed languages?

I work in php, and the concept of interfaces seems to me a little useless here. From reading, I understand that interfaces are part of "design by contract", but without at least guaranteeing a return ...
6
votes
1answer
152 views

Code Contracts: How do I state in a post-condition that a field/property's value has not changed?

I'll best just show with a code example what I would like to accomplish? class SomeClass { public int SomeProperty; public void SomeOperation() { Contract.Ensures( ...
6
votes
9answers
554 views

How can I show that a method will never return null (Design by contract) in C#

I have a method which never returns a null object. I want to make it clear so that users of my API don't have to write code like this: if(Getxyz() != null) { // do stuff } How can I show this ...
5
votes
5answers
97 views

Should my classes restrict developers from doing wrong things with them?

I am trying to understand where good contracts end and paranoia starts. Really, I just have no idea what good developer should care about and what shall he leave out :) Let's say I have a class that ...
5
votes
3answers
94 views

Contract.Requires usage

Here is my problem. I am a very big fan of Design by contract, I am using this concept especially when developing libraries that can be used by other developers. I just found out a new way of doing ...
5
votes
2answers
318 views

When to use assert in client & common GWT code

There are several questions on StackOverflow discussing the question of when one should use an assert statement versus throwing some exception. (Examples here, here, here, here, and here. However, I ...
5
votes
3answers
199 views

Is a postcondition a (type of) unit test?

I'm trying to incorporate some design-by-contract techniques into my coding style. Postconditions look a lot to me like embedded unit tests and I'm wondering if my thinking here is on the right track ...
5
votes
1answer
901 views

Am I implementing this simple contract incorrectly?

This is my code: public class RegularPolygon { public int VertexCount; public double SideLength; public RegularPolygon(int vertexCount, double sideLength) { ...
5
votes
2answers
439 views

Code Contracts: Why are some invariants not considered outside the class?

Consider this immutable type: public class Settings { public string Path { get; private set; } [ContractInvariantMethod] private void ObjectInvariants() { ...
5
votes
2answers
315 views

What to do when using Contract.Assert(true) and the method must return something?

I have a bit of code with the following logic: //pseudo-code foreach (element in elementList) { if (element is whatever) return element; } } In theory, there is always one element ...
5
votes
2answers
205 views

Why isn't JML implemented as Annotations in Java?

Contrary to Code Contracts in C#, in JML Code Contracts are just text that's used in the form of comments in the header of a method. Wouldn't it be better to have them exposed as Annotations, then? ...
5
votes
2answers
328 views

How might you implement design-by-contract in Clojure specifically or functional languages in general?

I'd prefer examples to be in a Lisp variant (bonus points for Clojure or Scheme) since that's what I'm most familiar with, but any feedback regarding DBC in functional lanugages would of course be ...
5
votes
1answer
283 views

What's the most widely-used open source project that uses design by contract?

I'm curious about how much design-by-contract is used in practice outside of the Eiffel community. Are there any active open-source projects that use design-by-contract? Or, to recast the question ...
5
votes
3answers
438 views

Design by Contract in C for use in Automated Theorem Proving

I'm working on a couple of C projects and I'd like to use automated theorem proving to validate the code. Ideally I'd just like to use the ATP to validate the functions contracts. Is there any ...
5
votes
5answers
519 views

What are the best practices for Design by Contract programming

What are the best practices for Design by Contract programming. At college I learned the design by contract paradigma (in an OO environment) We've learned three ways to tackle the problem : 1) ...
5
votes
1answer
352 views

Is Spec# stable enough to use?

Does anyone here use Spec# regularly? I would like to know if it is stable and powerful enough before I start using it everywhere. It looks like the syntax is influencing c# 4.0, which will hopefully ...
4
votes
3answers
324 views

Code Contracts in C# 4.0

I made a method like this class PersonCollection { [Contracts.CanReturnNull] //dont know if something like this exists? IPerson GetPerson(Guid personId) { if ...
4
votes
5answers
233 views

How to define IEnumerable behavior by contract?

Consider this 2 methods that returns IEnumerable: private IEnumerable<MyClass> GetYieldResult(int qtResult) { for (int i = 0; i < qtResult; i++) { ...
4
votes
4answers
137 views

Argument Exceptions should be Unit Tested?

I know this question is pretty similar to others that have been posted before but I would like to discuss this topic in a proper way. Do you think that the "obvious" exception should be unit tested? ...
4
votes
1answer
218 views

Which 3rd party Code-by-Contract library is most like MS's .NET 4.0 library?

I want to jump into coding by contract. I got VS2010 (with the C# 4.0 compiler) but I have to target the 3.5 framework. What 3rd party code by contract library has classes and interface the most ...
4
votes
4answers
180 views

Do you have any tips to effectively use Java Assert?

I don't see much of the developer using Java Assert, but I am very keen in using them. Could you share some tips to effectively use them?
4
votes
2answers
270 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 ...
4
votes
5answers
1k views

The best way to assert pre-condition and post-condition of arguments and values in .NET?

I have been thinking about design by contract lately and I was wondering what people think is the best way to assert pre-condition and post-condition of values in .NET? i.e. validating argument values ...
3
votes
1answer
34 views

Can this statement be regarded as a class invariant?

This is a highly general thought, but let's use C# in this example. Given that I have a disposable class Foo, i.e., it implements IDisposable. Foo has a boolean flag disposed that is false until ...
3
votes
3answers
114 views

DDD: the Repository contract

I've read in various places that one important requirement in DDD is to have a bounded contract for the Repository: findByName(string name) findByEmail(string email) etc. And not provide a generic ...
3
votes
3answers
220 views

How does Racket Scheme's “design by contract” features different from Eiffel?

I know that both Eiffel (the progenitor) and Racket both to implement "Design by Contract" features. Sadly, I am not sure how one would different from the other. Eiffel's DBC is reliant on the OOP ...
3
votes
3answers
138 views

How to enforce interface contracts (in C) at compile time?

Background: We're modeling the firmware for a new embedded system. Currently the firmware is being modeled in UML, but the code generation capabilities of the UML modeling tool will not be used. ...

1 2