Examples of Coche


Examples of es.fjtorres.pruebas.webServices.core.Coche

  }

  @Override
  @WebMethod
  public Coche getCoche() {
    Coche coche = new Coche();;
    coche.setAnio(2014);
    coche.setCocheId(1L);
    coche.setMarca("FORD");
    coche.setModelo("FOCUS");
    return coche;
  }
View Full Code Here

Examples of es.fjtorres.pruebas.webServices.core.Coche

    assertEquals("Hello word", response);
  }

  @Test
  public void testGetCoche() {
    final Coche response = target("/prueba/coche").request()
        .accept(MediaType.APPLICATION_JSON).get(Coche.class);
    assertNotNull(response);
  }
View Full Code Here

Examples of es.fjtorres.pruebas.webServices.core.Coche

  }

  @Test
  public void testLoad() {
    Response response = target("/prueba/coche").request().put(
        Entity.json(new Coche()));
    System.out.println(response.getStatus());
  }
View Full Code Here

Examples of es.fjtorres.pruebas.webServices.core.Coche

    assertNotNull(instance.getCoche());
  }

  @Test
  public void testLoad() {
    instance.load(new Coche());
  }
View Full Code Here

Examples of es.fjtorres.pruebas.webServices.core.Coche

    @GET
    @Path("coche")
    @Produces(MediaType.APPLICATION_JSON)
    public Coche getCoche() {
    Coche coche = new Coche();;
    coche.setAnio(2014);
    coche.setCocheId(1L);
    coche.setMarca("FORD");
    coche.setModelo("FOCUS");
    return coche;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.