示例#1
0
 /** Test of setArticulo method, of class LineaPedido. */
 @Test
 public void setArticulo() {
   System.out.println("setArticulo");
   Articulo articulo = null;
   LineaPedido instance = new LineaPedido();
   instance.setArticulo(articulo);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
示例#2
0
 /** Test of setCantidad method, of class LineaPedido. */
 @Test
 public void setCantidad() {
   System.out.println("setCantidad");
   int cantidad = 0;
   LineaPedido instance = new LineaPedido();
   instance.setCantidad(cantidad);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }
示例#3
0
 /** Test of getArticulo method, of class LineaPedido. */
 @Test
 public void getArticulo() {
   System.out.println("getArticulo");
   LineaPedido instance = new LineaPedido();
   Articulo expResult = null;
   Articulo result = instance.getArticulo();
   assertEquals(expResult, result);
   // TODO review the generated test code and remove the default call to fail.
   fail("The test case is a prototype.");
 }