Tagged Questions
3
votes
3answers
881 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 ...
1
vote
0answers
22 views
If an invariant is broken - Attempt to accommodate elegantly or assume all is lost and jump ship?
Say I have a function which when originally built assumed that the entity that comes in has a Description and Title property. When I build my tests I get an Null reference error as I am initializing ...