Exemplo n.º 1
0
 /** Test of add method, of class ArrayUtil. */
 @Test
 public void testAdd_float_floatArr() {
   System.out.println("add");
   float value = 0.0F;
   float[] array = null;
   float[] expResult = null;
   float[] result = ArrayUtil.add(value, array);
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }