22
votes
17answers
2k 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, …
17
votes
13answers
1k 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 …
8
votes
8answers
514 views
Does Design By Contract Work For You?
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 …
7
votes
3answers
307 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 …
6
votes
2answers
193 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 …
6
votes
5answers
650 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, …
6
votes
9answers
1k 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);
…
5
votes
3answers
204 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 …
5
votes
1answer
201 views
Is Spec# stable enough to use?
Hi, 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 …
4
votes
4answers
239 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
4
votes
3answers
220 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 …
4
votes
5answers
219 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) …
4
votes
1answer
136 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
9answers
363 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 any user that is using my API don't have write code like this:
if(Getxyz() != null)
{
// do stuff
}
How can I …
4
votes
6answers
493 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, …
