3
votes
5answers
81 views
How can I place validating constraints on my method input parameters?
Here is the typical way of accomplishing this goal:
public void myContractualMethod(final String x, final Set<String> y) {
if ((x == null) || (x.isEmpty())) {
throw new …
3
votes
1answer
126 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 …
0
votes
1answer
16 views
How do I set up Microsoft Contracts static checking in Visual Studio 2010?
I recently downloaded Visual Studio 2010b2, and wanted to re-evaluate some of my questions about the Microsoft contracts static checker.
I managed to re-use most of the code by using the …
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 …
1
vote
2answers
115 views
What does it take to prove this Contract.Requires?
I have an application that runs through the rounds in a tournament, and I am getting a contract warning on this simplified code structure:
public static void LoadState(IList<Object> stuff)
…
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
0
votes
3answers
157 views
Are preconditions and postconditions needed in addition to invariants in member functions if doing design by contract?
I understand that in the DbC method, preconditions and postconditions are attached to a function.
What I'm wondering is if that applies to member functions as well.
For instance, assuming I use …
3
votes
2answers
106 views
Design by Contract in C for use in Automated Theorem Proving
Hello; 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 …
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, …
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) …
1
vote
1answer
96 views
Design by Contract: Can you have an Interface with a Protocol?
Hi all, I'm pretty new to the concept of Design by Contract, but so far, I'm loving how easy it makes it to find potential bugs.
However, I've been working with the Microsoft.Contracts library (which …
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 …
0
votes
3answers
129 views
Argument checking or Design-by-Contract in java (GWT). Where to start?
I am playing GWT. I am looking for basic argument checking. I do not require invariants or result ensures.
What I am interested about it best practises on the topic.
For example, in c# I use one of …
1
vote
1answer
43 views
Can Microsoft.Contracts’ static checker be used without Team System?
Aside from the requirement on Visual Studio Team System to be able to install Microsoft.Contacts with the static checker, is it possible to run the static checker without team system? Or, does it …
4
votes
3answers
218 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 …
