@Test
 public void testMinimumValueWithOneElement() {
   List<Integer> integers = new ArrayList<Integer>();
   integers.add(5);
   CalcStats calcStats = new CalcStats(integers);
   assertEquals(new Integer(5), calcStats.getMinimum());
 }
 @Test
 public void testMinimumValueWithNegativeElements() {
   List<Integer> integers = new ArrayList<Integer>();
   integers.add(-1);
   integers.add(-2);
   integers.add(-3);
   integers.add(-15);
   CalcStats calcStats = new CalcStats(integers);
   assertEquals(new Integer(-15), calcStats.getMinimum());
 }
 @Test
 public void testMinimumValueWithNullAtConstruction() {
   CalcStats calcStats = new CalcStats(null);
   assertNull(calcStats.getMinimum());
 }
 @Test
 public void testMinimumValueWithNoElements() {
   List<Integer> integers = new ArrayList<Integer>();
   CalcStats calcStats = new CalcStats(integers);
   assertNull(null, calcStats.getMinimum());
 }