3
votes
5answers
67 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())) {
th …
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 us …
3
votes
1answer
125 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 r …
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&l …
0
votes
3answers
154 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, …
1
vote
1answer
39 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 sys …
1
vote
1answer
95 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.Cont …
4
votes
4answers
235 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
214 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 …
0
votes
0answers
122 views
Combining nosetests with contracts for Python
I'm using contracts for Python to specify preconditons/postconditions/invariants. I'm also using doctests for doing unit testing.
I'd like to have all of my doctest unit tests ru …
0
votes
1answer
67 views
How do I know which contract failed with Python’s contract.py?
I'm playing with contract.py, Terrence Way's reference implementation of design-by-contract for Python. The implementation throws an exception when a contract (precondition/postcon …
6
votes
2answers
189 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 ins …
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, …
3
votes
2answers
104 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 con …
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 …
