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 ...
2
votes
1answer
61 views
How can class invariant strengthen pre and post-conditions?
Link
You can think of the class invariant as a health criterion, which must
be fulfilled by all objects in between operations. As a precondition
of every public operation of the class, it can ...
0
votes
1answer
22 views
not able to configure cofoja on eclipse
Eclipse is up to date, cofoja too, and so are java jre/jdk.
ASM should be included in cofoja, but I downloaded the 3.3 just in case.
I followed all the procedures I could find in internet, but the ...
1
vote
1answer
27 views
Ways to specify whether a feature is supported in contract
I have an interface -though it could also be an abstract class- that should allow its implementers to specify whether they support a particular feature and I'm looking for the best way to achieve ...
0
votes
1answer
55 views
Scala type constraints confusing error
This code:
trait Base[+K <: Option[Int]] {
val a: K = None
}
class GuaranteedA extends Base[Some[Int]] {
override val a = Some(1)
}
produces an error:
<console>:8: error: type ...
2
votes
1answer
67 views
How to combine Java assert and (JUnit) Tests for public postconditions?
I read the Oracle recommendations concerning Java's assert and it says that you should use assert for public postconditions, too
...
1
vote
1answer
76 views
Frama-C/WP/ACSL Correct use of \valid on structures
I'm having some doubts on how to correctly use the \valid annotation on structs.
struct someStruct{
int size1;
int size2;
char *str1;
char *str2;
}
A correct predicate to verify ...
0
votes
1answer
75 views
ACSL annotations on C macros
Is it possible to annotate C macros with ACSL?
eg:
/*@
assigns \nothing;
behavior xmin:
assumes x < y;
ensures \result == x;
behavior ymin:
assumes y <= ...
2
votes
1answer
79 views
Frama-C/WP not able to prove loop invariant with \at
I'm having trouble proving 2 loop invariants:
loop invariant \forall integer i; 0 <= i < (\at(n, Pre) - n) ==> ((char*)m2)[i] == \at(((char*)m1)[i], Pre);
loop invariant \forall ...
0
votes
3answers
88 views
A TraceListener, which throws an exception on a failed assertion
My problem with DefaultTraceListener (which is the only trace listener, if not overridden in app.config) is that, if AssertUiEnabled is false (i.e. in ASP.NET) it writes a message as OutputDebugString ...
1
vote
0answers
48 views
Design by contract for Android [closed]
I've found plenty of libraries to support DBC for java, but are there any projects which allow for DBC to be used in Android projects?
0
votes
0answers
37 views
Modern Jass Configuration in Eclipse
I am trying to get Modern Jass to work on Eclipse, I am able to import the jass library file into the project, but when it compiles and run, there is no exception as stated in the example. For example ...
5
votes
2answers
127 views
Design by contract and assert statements
I am interested in the Design by Contract approach. It seems that for preconditions checked exceptions must be used to enforce them.
But for post-conditions and class-invariants I think that ...
1
vote
2answers
133 views
Design by contract and unit testing in C++
I am trying to combine basic Design by Contract (implemented by macros, which use the built-in assert function) and Google Test unit testing in an application.
So, for example, I have the following ...
2
votes
4answers
164 views
How do I insert a precondition in a java class method or constructor?
This is for a java class I'm taking. The book mentions preconditions and postconditions but doesn't give any examples how to code them. It goes on to talk about asserts, I have that down, but the ...
2
votes
1answer
82 views
OOP: implementing an interface method with a wider signature
Let's say I have an interface:
INTERFACE `IFace` (
METHOD `f` (INT) : NIL
)
And I would like to implement it with a method that has a wider signature:
CLASS `A` IMPLEMENTS `IFace` (
METHOD `f` ...
2
votes
1answer
122 views
Requires on setter/getter in vala
Is there any way to do something like the following in Vala ?
public int year {
get { return this.year; }
set requires (1500 < value && value < 2050) { this.year = value; }
}
1
vote
1answer
73 views
PyContract PostCondition Involving non-input-parameter Variable
Hopefully, this will be my last question in the series (my project is almost over, unless the requirements change).
I'm working on writing some constraints for a class method using PyContract (not ...
0
votes
1answer
68 views
Ensure Memory Location of Variable hasn't Changed
This is a follow up of my previous question
I'm working on writing some constraints for a class method using PyContract (not PyContracts). As a postcondition, I'd like to ensure that the memory ...
0
votes
1answer
52 views
Referencing `self` in `__old__` in PyContract constraints
I'm working on writing some constraints for a class method using PyContract (not PyContracts). As a postcondition, I'd like to ensure that the memory address of the instance hasn't changed i.e. ...
1
vote
2answers
60 views
PyContract check functions in an imported module
I am using PyContract (not PyContracts) to implement design-by-contracts for my genetic algorithms framework.
The main module is GA.py, which calls a function from crossover.py (let's call it ...
0
votes
1answer
139 views
Usage of javaagent with Android
I've recently became interested in DBC methodology. As Java is my "native" language I've looked at cofoja and more recently java-on-contracts. I mainly create Android software, so naturally I'd like ...
0
votes
0answers
62 views
Why design by contract isn't more popular?
In theory, it seems like a great solution for avoiding bugs, but why in practice we hear so little about it?
Why can't we see more support for it on Java or .net for example?
3
votes
1answer
91 views
Functional language with design by contract feature
I am looking for a functional language with good design by contract feature (preferably first class, but i good library would also do).The best i could find so far is Racket http://racket-lang.org/, ...
0
votes
0answers
32 views
Design by Contract in oz?
How can you use Design by Contract (DbC) in oz?
In detail
I just came across oz via the book Concepts, Techniques, and Models of Computer Programming and was disappointed that DbC was not ...
-3
votes
1answer
337 views
When JSR-308 will become part of JDK? [closed]
See my blog post for excerpt from Java Posse #386 - Newscast for May 31st 2012 that expands this topic.
Does JSR 308 promotes design-by-contract to Java? It is step further from assertions? When it ...
3
votes
1answer
96 views
JavaScript contracts and assertions
This has bugged me for a while. I throw an exception on an assertion failure, but this is only helpful if I can actually catch the exception (in which case I alert the user). If I can't catch the ...
2
votes
2answers
154 views
Using scope guards as code contracts
So we're investigating the use of scope guards or some similar mechanism to ensure incoming/outgoing object validity and/or internal state invariance, similar to C# Code Contracts.
In the specific ...
7
votes
3answers
107 views
What is the idiomatic way to check and document function preconditions and postconditions in R?
What is the idiomatic way to check and document function preconditions and postconditions in R? I would consider Eiffel's built in require and ensure constructs or D's in and out blocks state of the ...
1
vote
3answers
114 views
Design by Contract, and generic exceptions
I'm in the early process of implementing a very simple "design by contract" static helper class, similar to NUnit's Assert. Ideally what I'm looking to do is pass in an expression, check if it's true, ...
2
votes
1answer
108 views
Meaning of \old in ACSL post-conditions
I am a newbie user of Frama-C and have a few questions regarding assertions
over pointers.
Consider the C fragment below involving:
two related data structures Data and Handle, s.t. Handle has a ...
3
votes
5answers
394 views
Design By Contract, writing test-friendly code, object construction and Dependency Injection putting all together best practices
I have been trying to figure out the best practices to write test-friendly code, but more specifically the practices related to object construction. In the blue book we discovered that we should ...
0
votes
1answer
253 views
Design by Contract for Objective-C? [closed]
Last year I took a class about the Design By Contract methodology. We programmed in C# with the Contract API that Mircosoft Research created, and generated unit tests with PEX. This year, I am ...
4
votes
2answers
188 views
What kinds of pre-conditions are sensible in Design by Contract?
Let's assume we have a class Student with the following constructor:
/** Initializes a student instance.
* @param matrNr matriculation number (allowed range: 10000 to 99999)
* @param firstName ...
0
votes
1answer
123 views
How to code by contract using RESTful Web Services
Our company as a best practice creates Web Services using a Contract-First approach.
The WSDL is defined before the implementation is considered.
Is it possible to use such an approach using REST? I ...
9
votes
5answers
524 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 ...
17
votes
3answers
1k 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:
...
3
votes
2answers
63 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 ...
5
votes
5answers
116 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 ...
9
votes
3answers
2k 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 ...
0
votes
3answers
65 views
Handling switch statement
What's the preferred way to handle the following case:
switch (numberOfActualBytes)
{
case 1: return something1;
case 2: return something2;
case 3: return something3;
case 4: return ...
0
votes
3answers
1k views
why using 'assert' in a project? (and why using it so many times)
i was reading through the sample code ListAdder, and there are many asserts right after the variable, or used in almost every method, for example :
self.formatter = [[[NSNumberFormatter alloc] init] ...
0
votes
1answer
291 views
Using Cofoja with Wicket (or even with just Maven)
I am trying my darnedest to get Google Cofoja to run in my Apache Wicket application which uses Maven2 as seems to be standard.
The project was initially generated using Leg Up with the Archetype ...
4
votes
3answers
268 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 ...
1
vote
0answers
170 views
How to scan Annotations used in contracts written using COFOJA?
I am working on a project, where I have to write a contract for a method using COFOJA , and I have to generate code for method from the contracts using heuristics.
1) How will I be able to scan ...
4
votes
2answers
554 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 ...
6
votes
2answers
1k 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 ...
10
votes
4answers
636 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 ...
3
votes
2answers
494 views
Is there a design by contract framework for php?
Is there a framework or library for php that will help me implement design by contract in my applications?
In the best case it would use javadoc like annotations in the comments.
0
votes
1answer
105 views
Can design by contract allow me to enforce private methods
I can't do this with language
How to enforce private method since interface methods are only public ?
so can I use design by contract instead ?
3
votes
3answers
2k views
When to add a precondition and when to (only) throw an exception?
I am learning about preconditions and when to use them. I have been told
that the precondition
@pre fileName must be the name of a valid file
does not suit in the following code:
/**
Creates a new ...
