Corner cases.
*Can it handle negatives *
Array = [-5, -5, -5, 5, 5, 5, 5] expected : 5
Array = [-5, -5, -5, -5, 5, 5, 5] expected : -5
How does it handle ambiguous cases
Array = [1,1,1,2,2,2] expected = ?? (See spec for expected)
Array = [1,2,3,4,5,6] expected = ??
How does it handle arbitrarily large ints
Array = [999999999999999, 999999999999999, 999999999999999, -99999999999999999]
expected = 999999999999999;
How does it handle arbitrarily large Arrays
Array = [0,0] + {i : 1 < i < 9999999999999, i is an int }
expected = 0;
How does it handle nulls
Array = null;
expected = null;
Array = [null, 1, 2, 3, 3, 3]
expected = 3;
Array = [null, null, null, 1, 2, 3, 3]
Expected = null or 3 depending on spec.
Why units test and not just debug ?
1.) debugging assumes you know there error is there already. If we always knew about all errors just by looking at the code we wouldn't need to test at all would we?
2.) Often times we are more interested in the undefined areas of a functions spec then the errors in the code. You never told me how you handle null values in the array... You'll need to specify that in your spec before your api is 'complete'
3.)For this particular function working it out by hand is easy. But what if you are computing the determinate of the jacobian matrix of a function? You don't really want to do that on paper do you?
4.) In an enterprise environment formalized testing prevents teams from cutting corners during crunch times, which can be very damaging to companies, and net sum will increase development time rather then decrease it due to reduced stability in code.