Tagged Questions
The preconditions tag has no wiki summary.
10
votes
4answers
372 views
What is the proper error message to supply to Google Guava's Preconditions.* methods?
For example when using Preconditions.checkArgument, is the error message supposed to reflect the passing case or the failing case of the check in question?
import static ...
9
votes
4answers
555 views
Null check error message as “is null” or “was null”
When doing null checks in Java code, and you throw IllegalArgumentExceptions for null values, what kind of message template do you use?
We tend to use something like this
public User getUser(String ...
9
votes
4answers
657 views
Slow Scala assert
We've been profiling our code recently and we've come across a few annoying hotspots. They're in the form
assert(a == b, a + " is not equal to " + b)
Because some of these asserts can be in code ...
6
votes
2answers
483 views
Pros/cons of different methods for testing preconditions?
Off the top of my head, I can think of 4 ways to check for null arguments:
Debug.Assert(context != null);
Contract.Assert(context != null);
Contract.Requires(context != null);
if (context == null) ...
5
votes
4answers
171 views
Checking preconditions in .NET
I'm a fan of the "fail early" strategy and want to check that methods params have correct values for example. In Java I'd use something like Guava:
checkArgument(count > 0, "must be positive: %s", ...
4
votes
1answer
159 views
How to store persons name in a record table
Intro
Damn, this is harder then I thought.
Some people have camel-case names like McDonald or O'Ferncher, and some do not have double-barrelled name, but hyphenated name like Bowes-Lyon or just ...
4
votes
10answers
388 views
how do i explain that if (xyz == null) checks are not “protective”
i have a few developers who constantly put If null checks
For example:
Run(Order order)
{
if (order == null) return;
}
in their code as they think they are protecting their class if someone ...
3
votes
4answers
187 views
Function description
If I have fnc like this:
void fnc(const SomeType&){/**/}
And when I list preconditions and postconditions for this fnc I think that listing precondition of form:
SomeType must be of a ...
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 ...
2
votes
2answers
89 views
Check in range precondition
I like guava preconditions, but what I really need from it is one more method - check that the number is in range. Smt like this
//probably there should be checkStateInRange also
public static void ...
2
votes
1answer
58 views
Automatic conversion of wrapper in C#
I've build wrapper-class intended to prevent reference types of being null, as a pre-condition code contract.
public sealed class NotNullable<T>
where T : class
{
private T t;
...
2
votes
3answers
391 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 ...
2
votes
6answers
348 views
Binary Searching
I want to understand more about binary searching, cause I don't really understand. Binary search requires a precondition that an array is sorted. I got that right? It seems like a method should check ...
1
vote
2answers
47 views
Code Contracts 1.4.40602.0 - Contract.ForAll doesn't seem to be working?
Warning 1 CodeContracts: requires unproven: Contract.ForAll(coll, item => item != null) C:\MyApp\MyObj.cs 38 9 TSI Framework
public MyObj()
: this(new ...
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 ...
1
vote
3answers
102 views
can I use a Junit Test as a precondition For another Junit Test
The title pretty much says it all but I will clarify anyway.
I have a jUnit test (lets call it T1) in which I use an assertion. For that assertion to be of any value I need the validator for that ...
1
vote
12answers
438 views
preconditions and exceptions
Suppose you have a method with some pre and post-conditions.
Is it ok to create an exception class for each pre-condition that is not accomplished?
For example:
Not accomplishing pre1 means throwing ...
0
votes
1answer
21 views
Precondition UML?
I'm using Agilian 3.2 to build a small activity diagram. The diagram contains a couple of actions. The problem is: I'd like to display the precondition somewhere in the diagram. Is there any standard ...
0
votes
2answers
68 views
Should methods have the same preconditions as the methods they call?
I've recently had a few scenarios where small changes to code have resulted in changing preconditions across multiple classes and I was wondering if design by contract is supposed to be that way or ...
0
votes
2answers
842 views
How to generate random numbers of lognormal distribution within specific range in Matlab
My grain sizes are defined as D=[1.19,1.00,0.84,0.71,0.59,0.50,0.42]. The problem is described below in steps.
Grain sizes should follow lognormal distribution.
The mean of the grain sizes is fixed ...
0
votes
2answers
80 views
Precondition or preconditions?
Guys what is the formal name PRECONDITION or PRECONDITIONS that fnc must satisfy in order to work correctly?