active questions tagged design-by-contract - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T07:57:25Zhttp://stackoverflow.com/feeds/tag/design-by-contracthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1874475/design-by-contract-and-class-invariant1Design by contract and class invariant loudiyimo2009-12-09T15:04:19Z2009-12-09T17:11:54Z
<p>hi </p>
<p>I'm reading about dbc (<a href="http://en.wikipedia.org/wiki/Design%5Fby%5Fcontract" rel="nofollow">http://en.wikipedia.org/wiki/Design%5Fby%5Fcontract</a>)
Can someone please give me a simple example of using class invariants in relation to inheritance?</p>
http://stackoverflow.com/questions/1865298/how-might-you-implement-design-by-contract-in-clojure-specifically-or-functional2How might you implement design-by-contract in Clojure specifically or functional languages in general?rrc7cz2009-12-08T07:39:14Z2009-12-09T16:00:57Z
<p>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 valuable to the greater community.</p>
<p>Here's an obvious way:</p>
<pre><code>(defn foo [action options]
(when-not (#{"go-forward" "go-backward" "turn-right" "turn-left"} action)
(throw (IllegalArgumentException.
"unknown action")))
(when-not (and (:speed options) (> (:speed options) 0))
(throw (IllegalArgumentException.
"invalid speed")))
; finally we get to the meat of the logic)
</code></pre>
<p>What I don't like about this implementation is that the contract logic obscures the core functionality; the true purpose of the function is lost in conditional checks. This is the same issue I raised in <a href="http://stackoverflow.com/questions/1809093/how-can-i-place-validating-constraints-on-my-method-input-parameters">this question</a>. In an imperative language like Java, I can use annotations or metadata/attributes embedded in documentation to move the contract out of the method implementation.</p>
<p>Has anyone looked at adding contracts to metadata in Clojure? How would higher-order functions be used? What other options are there?</p>
http://stackoverflow.com/questions/394591/design-by-contract-and-test-driven-development7Design By Contract and Test-Driven DevelopmentAdam Bellaire2008-12-27T02:48:06Z2009-12-07T07:59:57Z
<p>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, and I was wondering if anyone had some insight on the following (related) questions:</p>
<ul>
<li>Isn't it against the DRY principle to have TDD and DbC unless you're using some kind of code generator to generate the unit tests based on contracts? Otherwise, you have to maintain the contract in two places (the test and the contract itself), or am I missing something?</li>
<li>To what extent does TDD make DbC redundant? If I write tests well enough, aren't they equivalent to writing a contract? Do I only get added benefit if I enforce the contract at run time as well as through the tests?</li>
<li>Is it significantly easier/more flexible to only use TDD rather than TDD with DbC? </li>
</ul>
<p>The main point of these questions is this more general question: <strong>If we're already doing TDD properly, will we get a significant benefit for the overhead if we also use DbC?</strong></p>
<p>A couple of details, though I think the question is largely language-agnostic:</p>
<ul>
<li>Our team is very small, <10 programmers.</li>
<li>We mostly use Perl.</li>
</ul>
http://stackoverflow.com/questions/1809093/how-can-i-place-validating-constraints-on-my-method-input-parameters3How can I place validating constraints on my method input parameters?rrc7cz2009-11-27T14:28:40Z2009-11-28T08:41:33Z
<p>Here is the typical way of accomplishing this goal:</p>
<pre><code>public void myContractualMethod(final String x, final Set<String> y) {
if ((x == null) || (x.isEmpty())) {
throw new IllegalArgumentException("x cannot be null or empty");
}
if (y == null) {
throw new IllegalArgumentException("y cannot be null");
}
// Now I can actually start writing purposeful
// code to accomplish the goal of this method
</code></pre>
<p>I think this solution is ugly. Your methods quickly fill up with boilerplate code checking the valid input parameters contract, obscuring the heart of the method.</p>
<p>Here's what I'd like to have:</p>
<pre><code>public void myContractualMethod(@NotNull @NotEmpty final String x, @NotNull final Set<String> y) {
// Now I have a clean method body that isn't obscured by
// contract checking
</code></pre>
<p>If those annotations look like JSR 303/Bean Validation Spec, it's because I borrowed them. Unfortunitely they don't seem to work this way; they are intended for annotating instance variables, then running the object through a validator.</p>
<p>Which of the <a href="http://en.wikipedia.org/wiki/Design%5Fby%5Fcontract#Languages%5Fwith%5Fthird-party%5Fsupport" rel="nofollow">many Java design-by-contract frameworks</a> provide the closest functionality to my "like to have" example? The exceptions that get thrown should be runtime exceptions (like IllegalArgumentExceptions) so encapsulation isn't broken.</p>
http://stackoverflow.com/questions/1662283/how-do-i-set-up-microsoft-contracts-static-checking-in-visual-studio-20100How do I set up Microsoft Contracts static checking in Visual Studio 2010?John Gietzen2009-11-02T16:28:28Z2009-11-03T12:46:16Z
<p>I recently downloaded Visual Studio 2010b2, and wanted to re-evaluate some of my questions about the Microsoft contracts static checker.</p>
<p>I managed to re-use most of the code by using the <code>System.Diagnostics.Contracts</code> namespace for the code, but I am unsure of how to enable the static checker. Do I need an additional plug-in?</p>
<p>I was under the impression that design-by-contract was supposed to "just work" in VS2010.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1634894/whats-the-most-widely-used-open-source-project-that-uses-design-by-contract3What's the most widely-used open source project that uses design by contract?lorin2009-10-28T02:31:53Z2009-10-31T19:13:36Z
<p>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? </p>
<p>Or, to recast the question into one what that has a single answer: what's the most widely-used (non-Eiffel) open-source project that uses design-by-contract?</p>
http://stackoverflow.com/questions/833316/design-by-contract-in-c-for-use-in-automated-theorem-proving3Design by Contract in C for use in Automated Theorem Provingajray2009-05-07T07:30:59Z2009-10-31T18:48:26Z
<p>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 any functionality in C/gcc or external software/packages/etc that would enable design-by-contract style coding?</p>
<p>If not then thats just incentive to get started on my own.</p>
<p>My references for this would be something like Spec# or Sing# from MSR, but I'm an open source guy and I'm looking for open source solutions.</p>
http://stackoverflow.com/questions/1230070/what-does-it-take-to-prove-this-contract-requires1What does it take to prove this Contract.Requires?John Gietzen2009-08-04T21:43:00Z2009-10-31T18:04:25Z
<p>I have an application that runs through the rounds in a tournament, and I am getting a contract warning on this simplified code structure:</p>
<pre><code> public static void LoadState(IList<Object> stuff)
{
for(int i = 0; i < stuff.Count; i++)
{
// Contract.Assert(i < stuff.Count);
// Contract.Assume(i < stuff.Count);
Object thing = stuff[i];
Console.WriteLine(thing.ToString());
}
}
</code></pre>
<p>The warning is:</p>
<pre><code>contracts: requires unproven: index < @this.Count
</code></pre>
<p>What am I doing wrong? How can I prove this on an <code>IList<T></code>? Is this a bug in the static analyzer? How would I submit a bug report to Microsoft?</p>
http://stackoverflow.com/questions/117171/design-by-contract-tests-by-assert-or-by-exception17design by contract tests by assert or by exception?andreas buykx2008-09-22T19:57:57Z2009-10-25T07:40:23Z
<p>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 checks are by <code>assert</code> and by <code>exception</code>. </p>
<ol>
<li>assert fails only in debug mode. To make sure it is crucial to (unit) test all separate contract preconditions to see whether they actually fail.</li>
<li>exception fails in debug and release mode. This has the benefit that tested debug behavior is identical to release behavior, but it incurs a runtime performance penalty.</li>
</ol>
<p>Which one do you think is preferable?</p>
<p>See releated question <a href="http://stackoverflow.com/questions/419406/are-assertions-good">here</a></p>
http://stackoverflow.com/questions/1176131/design-by-contract-in-c4Design by Contract in C++?yesraaj2009-07-24T06:58:57Z2009-10-11T06:48:30Z
<p>Is that any library that aids in implementing design by contract principle in c++ application.
EDIT:</p>
<blockquote>
<p>Looking for much better than ASSERT
something like <a href="http://www.codeproject.com/KB/cpp/DesignByContract.aspx" rel="nofollow">this</a></p>
</blockquote>
http://stackoverflow.com/questions/26455/does-design-by-contract-work-for-you8Does Design By Contract Work For You?happyappa2008-08-25T17:26:47Z2009-10-06T17:52:51Z
<p>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 lifecycle? What have you found to be the pros/cons of the design approach?</p>
<p>I came across the <a href="http://en.wikipedia.org/wiki/Design_by_contract" rel="nofollow">Design by Contract</a> approach in a grad school course. In the academic setting, it seemed to be a pretty useful technique. But I don't currently use Design by Contract professionally, and I don't know any other developers that are using it. It would be good to hear about its actual usage from the SO crowd.</p>
http://stackoverflow.com/questions/745136/what-are-the-best-practices-for-design-by-contract-programming4What are the best practices for Design by Contract programming.Peter2009-04-13T19:49:25Z2009-09-19T22:35:19Z
<p>What are the best practices for Design by Contract programming.</p>
<p>At college I learned the design by contract paradigma
(in an OO environment)
We've learned three ways to tackle the problem : </p>
<p>1) Total Programming : Covers all possible exceptional cases in its
effect (cf. Math)</p>
<p>2) Nominal Programming : Only 'promises' the right effects when the preconditions are met. (otherwise effect is undefined)</p>
<p>3) Defensive Programming : Use exceptions to signal illegal invocations of methods</p>
<p>Now, we have focussed in different OO scenarios on the correct use in each situation, but we haven't learned WHEN to use WHICH...
(Mostly the tactics where inforced by the exercice..)</p>
<p>Now I think it's very very strange that I haven't asked my teacher (but then again, during lectures, noone has) </p>
<p>Personally, I never use nominal now, and tend to replace preconditions with exceptions (so i rather use : throws IllegalDivisionByZero, than stating 'precondition : divider should differ from zero) and only program total what makes sense (so I wouldn't return a conventional value on division by zero), but this method is just based on personal findings and likes.</p>
<p>so I am asking you guys : </p>
<p>Are there any best practises?? </p>
http://stackoverflow.com/questions/868291/argument-checking-or-design-by-contract-in-java-gwt-where-to-start0Argument checking or Design-by-Contract in java (GWT). Where to start?Mike Chaliy2009-05-15T12:06:17Z2009-09-19T21:41:11Z
<p>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.</p>
<p>For example, in c# I use one of this options:</p>
<ol>
<li><code>if (arg1 != null) throw new ArgumentNulException....; // Official for public API;</code></li>
<li><code>Args.NotNull(arg1); // Home grown.</code></li>
<li><code>Contracts.Requires(arg1 != null); // Internal contract validation.</code></li>
</ol>
<p>What is the best place for me to start?</p>
<p>Ok, what I found for now.</p>
<ol>
<li><a href="http://www.javapractices.com/topic/TopicAction.do?Id=5" rel="nofollow">Validate method arguments</a></li>
<li><a href="http://java.sun.com/j2se/1.4.2/docs/guide/lang/assert.html" rel="nofollow">Programming With Assertions</a></li>
</ol>
http://stackoverflow.com/questions/1219564/are-preconditions-and-postconditions-needed-in-addition-to-invariants-in-member-f0Are preconditions and postconditions needed in addition to invariants in member functions if doing design by contract?jetimms2009-08-02T19:07:43Z2009-09-19T21:27:15Z
<p>I understand that in the DbC method, preconditions and postconditions are attached to a function.</p>
<p>What I'm wondering is if that applies to member functions as well.</p>
<p>For instance, assuming I use invariants at the beginning at end of each public function, a member function will look like this:</p>
<p>edit: (cleaned up my example)</p>
<pre><code>void Charcoal::LightOnFire() {
invariant();
in_LightOnFire();
StartBurning();
m_Status = STATUS_BURNING;
m_Color = 0xCCCCCC;
return; // last return in body
out_LightOnFire();
invariant();
}
inline void Charcoal::in_LightOnFire() {
#ifndef _RELEASE_
assert (m_Status == STATUS_UNLIT);
assert (m_OnTheGrill == true);
assert (m_DousedInLighterFluid == true);
#endif
}
inline void Charcoal::out_LightOnFire() {
#ifndef _RELEASE_
assert(m_Status == STATUS_BURNING);
assert(m_Color == 0xCCCCCC);
#endif
}
// class invariant
inline void Charcoal::invariant() {
assert(m_Status == STATUS_UNLIT || m_Status == STATUS_BURNING || m_Status == STATUS_ASHY);
assert(m_Color == 0x000000 || m_Color == 0xCCCCCC || m_Color == 0xEEEEEE);
}
</code></pre>
<p>Is it okay to use preconditions and postconditions with global/generic functions only and just use invariants inside classes?</p>
<p>This seems like overkill, but maybe its my example is bad.</p>
<p>edit:</p>
<p>Isn't the postcondition just checking a subset of the invariant?</p>
<p>In the above, I am following the instructions of <a href="http://www.digitalmars.com/ctg/contract.html" rel="nofollow">http://www.digitalmars.com/ctg/contract.html</a> that states, "The invariant is checked when a class constructor completes, at the start of the class destructor, before a public member is run, and after a public function finishes."</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1215054/design-by-contract-can-you-have-an-interface-with-a-protocol1Design by Contract: Can you have an Interface with a Protocol?John Gietzen2009-07-31T21:50:28Z2009-08-01T16:51:21Z
<p>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.</p>
<p>However, I've been working with the Microsoft.Contracts library (which is pretty great,) and I have run into a road block.</p>
<p>Take this simplified example of what I'm trying to do:</p>
<pre><code>public enum State { NotReady, Ready }
[ContractClass(typeof(IPluginContract))]
public interface IPlugin
{
State State { get; }
void Reset();
void Prepare();
void Run();
}
[ContractClassFor(typeof(IPlugin))]
public class IPluginContract : IPlugin
{
State IPlugin.State { get { throw new NotImplementedException(); } }
void IPlugin.Reset()
{
Contract.Ensures(((IPlugin)this).State == State.NotReady);
}
void IPlugin.Prepare()
{
Contract.Ensures(((IPlugin)this).State == State.Ready);
}
void IPlugin.Run()
{
Contract.Requires(((IPlugin)this).State == State.Ready);
}
}
class MyAwesomePlugin : IPlugin
{
private State state = State.NotReady;
private int? number = null;
State IPlugin.State
{
get { return this.state; }
}
void IPlugin.Reset()
{
this.number = null;
this.state = State.NotReady;
}
void IPlugin.Prepare()
{
this.number = 10;
this.state = State.Ready;
}
void IPlugin.Run()
{
Console.WriteLine("Number * 2 = " + (this.number * 2));
}
}
</code></pre>
<p>To sum it up, I am declaring an interface for plugins to follow, and requiring them to declare their state, and limiting what can be called in any state.</p>
<p>This works at the call site, for both static and runtime validation. But the warning I keep getting is "contracts: ensures unproven" for both the <code>Reset</code> and <code>Prepare</code> functions.</p>
<p>I have tried finagling with <code>Invariant</code>s, but that doesn't seen to aid in proving the <code>Ensures</code> constraint.</p>
<p>Any help as to how to prove through the interface would be helpful.</p>
<p><strong>EDIT1:</strong></p>
<p>When I add this to the MyAwesomePlugin class:</p>
<pre><code> [ContractInvariantMethod]
protected void ObjectInvariant()
{
Contract.Invariant(((IPlugin)this).State == this.state);
}
</code></pre>
<p>Attempting to imply that the state as an IPlugin is the same as my private state, I get the same warnings, AND a warning that the "private int? number = null" line fails to prove the invariant.</p>
<p>Given that that is the first executable line in the static constructor I can see why it may say so, but why doesn't that prove the <code>Ensures</code>?</p>
<p><strong>EDIT2</strong></p>
<p>When I mark <code>State</code> with <code>[ContractPublicPropertyName("State")]</code> I get an error saying that "no public field/property named 'State' with type 'MyNamespace.State' can be found"</p>
<p>Seems like this should put me closer, but I'm not quite there.</p>
http://stackoverflow.com/questions/1216909/can-microsoft-contracts-static-checker-be-used-without-team-system1Can Microsoft.Contracts' static checker be used without Team System?John Gietzen2009-08-01T16:13:45Z2009-08-01T16:20:36Z
<p>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 depend on an API exposed by studio's team system components?</p>
<p>Also, is it within the license to copy the static checker from a computer with team system to one with professional?</p>
http://stackoverflow.com/questions/1075719/a-good-design-by-contract-library-for-java4A good Design-by-Contract library for Java?Chris Jones2009-07-02T17:38:12Z2009-07-02T21:17:11Z
<p>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 anybody care to compare and contrast different DbC packages for Java?</p>
http://stackoverflow.com/questions/260817/design-by-contract-in-c6'Design By Contract' in C#IAmCodeMonkey2008-11-04T03:50:30Z2009-07-02T00:10:02Z
<p>I wanted to try a little design by contract in my latest C# application and wanted to have syntax akin to:</p>
<pre><code>public string Foo()
{
set {
Assert.IsNotNull(value);
Assert.IsTrue(value.Contains("bar"));
_foo = value;
}
}
</code></pre>
<p>I know I can get static methods like this from a unit test framework, but I wanted to know if something like this was already built-in to the language or if there was already some kind of framework floating around. I can write my own Assert functions, just don't want to reinvent the wheel.</p>
http://stackoverflow.com/questions/1029540/combining-nosetests-with-contracts-for-python0Combining nosetests with contracts for Pythonlorin2009-06-22T21:40:58Z2009-06-22T21:40:58Z
<p>I'm using <a href="http://www.wayforward.net/pycontract/" rel="nofollow">contracts for Python</a> to specify preconditons/postconditions/invariants. I'm also using doctests for doing unit testing. </p>
<p>I'd like to have all of my doctest unit tests run with contracts enabled, and I'd like to run my tests using <a href="http://somethingaboutorange.com/mrl/projects/nose/0.11.1/" rel="nofollow">nose</a>. Unfortunately, if I run the tests with nose, it does not execute the pre/post/invariant assertions. I put a <a href="http://somethingaboutorange.com/mrl/projects/nose/0.11.1/doc%5Ftests/test%5Fdoctest%5Ffixtures/doctest%5Ffixtures.html#module-level-fixtures" rel="nofollow">setup function</a> in each .py file to make sure that <code>contract.checkmod</code> gets called</p>
<pre><code>def setup():
import contract
contract.checkmod(__name__)
</code></pre>
<p>I can confirm that this function is being executed by nose before it runs the tests, but the contracts still don't get executed..</p>
<p>On the other hand, if I run the doctest by calling <code>doctest.testmod</code>, the pre/post/inv do get called:</p>
<pre><code>def _test():
import contract
contract.checkmod(__name__)
import doctest
doctest.testmod()
if __name__=='__main__':
_test()
</code></pre>
<p>Here's an example of a Python script whose test will succeed if called directly, but failed if called with nose:</p>
<pre><code>import os
def setup():
import contract
contract.checkmod(__name__)
def delete_file(path):
"""Delete a file. File must be present.
>>> import minimock
>>> minimock.mock('os.remove')
>>> minimock.mock('os.path.exists', returns=True)
>>> delete_file('/tmp/myfile.txt')
Called os.path.exists('/tmp/myfile.txt')
Called os.remove('/tmp/myfile.txt')
>>> minimock.restore()
pre: os.path.exists(path)
"""
os.remove(path)
if __name__ == '__main__':
setup()
import doctest
doctest.testmod()
</code></pre>
http://stackoverflow.com/questions/444165/what-is-the-best-way-to-write-a-contract-for-css-usage-in-web-development0What is the best way to write a contract for CSS usage in Web Development?Geo2009-01-14T18:38:13Z2009-06-22T19:27:22Z
<p>Our Dev team had been developing enterprise web page more than 2 years ago. We are curious to know what is the best way to write a contract for CSS usage. For example, if we have a COMP, how we agree on a contract so our developers and our designers agree and we don't have to go back. </p>
<p>Is there a tool that is available for this type of technical writing?</p>
<p>What is the threadhold of information put in the CSS versus on the HTML page? Some of our designers thing that some things should go directly into the HTML page. The general opinion is that everything that is style should go in a CSS and all else in the html.</p>
<p>Thanks for your input.</p>
http://stackoverflow.com/questions/606000/what-is-the-current-best-validation-framework-for-asp-net-apps0What is the current best validation framework for asp.net apps?TT2009-03-03T11:20:24Z2009-06-22T13:50:03Z
<p>To make sure its a DRY approach all validation logic should of course go in the business logic (model).</p>
<ul>
<li>How are validation messages presented to views, should be able to localize error messages</li>
<li>Can you generate javascript from the validation framework. Compatibility with JQuery would be perfect</li>
<li>Is the framework compatible with a DbC approach?</li>
</ul>
<p>Edit:
I think this is the nicest one until now, Castle validator + live validation
<a href="http://blog.codeville.net/2008/04/30/model-based-client-side-validation-for-aspnet-mvc/" rel="nofollow">http://blog.codeville.net/2008/04/30/model-based-client-side-validation-for-aspnet-mvc/</a></p>
http://stackoverflow.com/questions/487046/whats-wrong-with-non-nullable-objects2Whats wrong with non nullable objects?TT2009-01-28T09:49:38Z2009-06-22T13:49:26Z
<p>I have been looking at DbC lately and Spec# which seem to have support for non nullable objects. Unfortunately Spec# seem to have been abandoned.</p>
<ol>
<li>Spec# seemed to have lots of nice language features built in so why was it abandoned?</li>
<li>Would there be any problem with letting all objects be non-nullable by default so you would have to write int?, string? and even MailMessage? if you really wanted a nullable object?</li>
<li>I see kind of a Sql analogy here
where you could check class
properties as nullable or non
nullable. Could you even put
constraints on properties as you
can with sql table columns?</li>
</ol>
<p>I don't see the problems with having features like this built in to the language. Could anybody enlighten me on this?</p>
http://stackoverflow.com/questions/599000/business-entities-value-objects-framework-with-dbc-support2Business entities / value objects framework with DbC supportTT2009-03-01T00:41:20Z2009-06-22T13:48:10Z
<p>The thing I think I spend most time on when building my business models is the validation of business entities and making sure the entity objects and their relationships maintains good integrity. My dream for a good entity/value object framework would help me create reusable entities/value objects and easily create constraints and rules for relationships as you would in a db but since I feel this really is business rules they belong in the model and should be totally independent of the database.</p>
<p>It should be easy to define that the Name property of a Person object should be required and that the Email property should be required and match a certain regex and that these rules should be easily reusable f.ex. in validating input in my web app.</p>
<p>I have absolutely most experience with Linq to sql and even though it certainly is nice to work with it has limit by not supporting value objects and others. My question is would Entity framework or NHibernate be more suiting or are there other technologies that fit my needs better?</p>
http://stackoverflow.com/questions/1003049/how-does-net-4-0s-design-by-contract-compare-to-eiffel6How does .NET 4.0's design by contract compare to Eiffel?kitsune2009-06-16T18:06:06Z2009-06-22T07:20:06Z
<p>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.</p>
<p>Can anyone with some insight elaborate on how powerful this will be compared to Eiffel's existing feature set?</p>
<p>Will contracts for interfaces be supported?</p>
http://stackoverflow.com/questions/1017985/how-do-i-know-which-contract-failed-with-pythons-contract-py0How do I know which contract failed with Python's contract.py?lorin2009-06-19T13:35:32Z2009-06-20T05:01:22Z
<p>I'm playing with <a href="http://www.wayforward.net/pycontract/" rel="nofollow">contract.py</a>, Terrence Way's reference implementation of design-by-contract for Python. The implementation throws an exception when a contract (precondition/postcondition/invariant) is violated, but it doesn't provide you a quick way of identifying which specific contract has failed if there are multiple ones associated with a method. </p>
<p>For example, if I take the <a href="http://www.wayforward.net/pycontract/examples/circbuf.py" rel="nofollow">circbuf.py</a> example, and violate the precondition by passing in a negative argument, like so: </p>
<pre><code>circbuf(-5)
</code></pre>
<p>Then I get a traceback that looks like this:</p>
<pre><code>Traceback (most recent call last):
File "circbuf.py", line 115, in <module>
circbuf(-5)
File "<string>", line 3, in __assert_circbuf___init___chk
File "build/bdist.macosx-10.5-i386/egg/contract.py", line 1204, in call_constructor_all
File "build/bdist.macosx-10.5-i386/egg/contract.py", line 1293, in _method_call_all
File "build/bdist.macosx-10.5-i386/egg/contract.py", line 1332, in _call_all
File "build/bdist.macosx-10.5-i386/egg/contract.py", line 1371, in _check_preconditions
contract.PreconditionViolationError: ('__main__.circbuf.__init__', 4)
</code></pre>
<p>My hunch is that the second argument in the PreconditionViolationError (4) refers to the line number in the circbuf.<strong>init</strong> docstring that contains the assertion:</p>
<pre><code>def __init__(self, leng):
"""Construct an empty circular buffer.
pre::
leng > 0
post[self]::
self.is_empty() and len(self.buf) == leng
"""
</code></pre>
<p>However, it's a pain to have to open the file and count the docstring line numbers. Does anybody have a quicker solution for identifying which contract has failed? </p>
<p>(Note that in this example, there's a single precondition, so it's obvious, but multiple preconditions are possible).</p>
http://stackoverflow.com/questions/155422/the-best-way-to-assert-pre-condition-and-post-condition-of-arguments-and-values-i3The best way to assert pre-condition and post-condition of arguments and values in .NET?James Newton-King2008-09-30T22:41:04Z2009-05-21T02:27:52Z
<p>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 to a method.</p>
<p>Some people recommend Debug.Assert while others talk about using an if statement plus throwing an exception. What are the pros and cons of each?</p>
<p>What frameworks are available that you recommend?</p>
http://stackoverflow.com/questions/679138/what-tooling-do-you-use-to-do-design-by-contract4What tooling do you use to do Design by Contract?Mike Chaliy2009-03-24T20:32:57Z2009-04-22T14:08:14Z
<p>I used to use <a href="http://research.microsoft.com/en-us/projects/contracts/" rel="nofollow">Microsoft CodeContracts</a> 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 to show something and compile time is less then acceptable. </p>
<p>I do not like this. And seems now is a good time to ask a help. What tooling do use use for your regualr developments?</p>
http://stackoverflow.com/questions/654737/design-by-contract-library-interface-thoughts0Design by Contract library (interface) thoughts?Berlin Brown2009-03-17T15:26:44Z2009-03-17T17:37:42Z
<p>I am looking at design by contract for a Java library, this what I came up with so far in terms of the interface.</p>
<p>The user could call executeContract and executeContract invokes invokeContract after calling 'require'. ensure is called after executeContract to ensure the correctness of what is returned by invokeContract.</p>
<p>This code also works as a callback method (anonymous inner class call).</p>
<p>What are your thoughts? Is this design by contract?, so far this helps me write testable Java code.</p>
<pre><code>public interface IContractHandler {
/**
* Execute contract will invoke the #invokeContract method. In the execute method,
* check for the validity of the preconditions and the post conditions.
*
* The precondition can be null.
*
* @param precondInput - Precondition Input Data, can be null.
* @return Post condition output
*/
public Object executeContract(final Object precondInput) throws ContractError;
/**
* Require that the preconditions are met.
*/
public Object require(final Object precondInput) throws ContractError;
/**
* Ensure that the postconditions are met.
*/
public Object ensure(final Object precondInput) throws ContractError;
/**
* The precondition can be null if the contract allows for that.
*
* @param precondInput - Precondition Input Data, can be null.
* @return Post condition output
*/
public Object invokeContract(final Object precondInput) throws ContractError;
}
</code></pre>
http://stackoverflow.com/questions/649020/can-design-by-contract-be-applied-to-dynamic-languages-as-easily-well-as-to-stati1Can Design-by-Contract be applied to dynamic languages as easily/well as to statically-typed ones?dcw2009-03-16T02:02:01Z2009-03-17T15:27:19Z
<p>The title pretty much sums up the gist.</p>
<p>I'm interested in whether it is possible to enable/disable contract enforcement(s) when using a dynamic language without running a serious risk of poorly/un-diagnosed failure?</p>
<p>If not, the crux seems (to me) to be that any enforcements are a required part of the component's logic, rather than optional/removable as per the spirit of removability of DbC's enforcements.</p>
http://stackoverflow.com/questions/584560/code-contracts-will-you-use-them5Code Contracts, will you use them?Renaud Bompuis2009-02-25T03:05:03Z2009-02-25T03:50:40Z
<p>Microsoft just released <a href="http://msdn.microsoft.com/en-us/devlabs/dd491992.aspx" rel="nofollow">Code Contracts</a>, a tool that integrates with Visual Studio and allows you to define contracts for your .Net code and get runtime <em>and</em> compile time checking.</p>
<p>Watch the <a href="http://channel9.msdn.com/posts/Peli/Getting-started-with-Code-Contracts-in-Visual-Studio-2008/" rel="nofollow">video on Channel 9</a> that shows how it being used.</p>
<p>For now it's an add-on but it will be part of the Base Class Library in .Net 4.0</p>
<p>Is this something you see yourself using?</p>
<p>I wonder if this means the death of <a href="http://research.microsoft.com/en-us/projects/specsharp/" rel="nofollow">Spec#</a>?</p>
<p><strong>Update</strong></p>
<p>What I mean by the death of Spec# is that we now have 2 different projects for writing contracts:<br />
Spec# is an evolution of C# and it introduces new keywords and behaviours; on the other hand, what Microsoft just released is a library that can be used with any .Net language.<br />
Since the latter looks like it's going to become the de-facto standard, I wonder where that leaves Spec#</p>