/** 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."); }
/** 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."); }
/** 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."); }