Package me.victorhernandez.springhibernate.model

Examples of me.victorhernandez.springhibernate.model.Car


    this.service = service;
  }
 
 
  public CarBean(){
    car = new Car();
  }
View Full Code Here


  @Test
  public void listCarsService(){
    List<Car> cars = carServiceTest.getCars();
    Assert.assertNotNull(cars);
    int carInitNum = cars.size();
    Car aNewCar = new Car();
    aNewCar.setCarName("Its a new car Service Test");
    aNewCar.setPrice(6358.64f);
    aNewCar.setId(null);
    carServiceTest.addCar(aNewCar);
    cars = carServiceTest.getCars();
    Assert.assertEquals(carInitNum+1, cars.size());
  }
View Full Code Here

TOP

Related Classes of me.victorhernandez.springhibernate.model.Car

Copyright © 2018 www.massapicom. 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.