Tagged Questions
13
votes
3answers
748 views
How free can I be in the code in an object invariant?
I'm trying to demonstrate invariants in Code Contracts, and I thought I'd give an example of a sorted list of strings. It maintains an array internally, with spare space for additions etc - just like ...
3
votes
3answers
63 views
Can I get Code Contracts to warn me about “illegal” subtyping?
Sorry if this question seems too long. Before I can ask it, I need to show where it's coming from.
Set-up:
Given the following immutable type Rectangle:
class Rectangle
{
public ...
1
vote
1answer
37 views
code skips over Contract.Requires
I'm trying to write this method using c# contracts...but when debugging, it completely ignores the Contract.requires and CheckRep() Am I using this incorrectly??
public Poly Add(Poly q)
{
...
1
vote
1answer
65 views
Where evaluate invariants after and before call a routine?
In the design by contracts, the class invariant must be satisfied on two occasions: after creating the object and after call a routine. Are there any examples or conditions, which I have to do the ...