Java Code Examples for org.springframework.samples.petclinic.model.Pet#setName()
The following examples show how to use
org.springframework.samples.petclinic.model.Pet#setName() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractClinicServiceTests.java From DevOps-for-Web-Development with MIT License | 6 votes |
@Test @Transactional public void shouldInsertPetIntoDatabaseAndGenerateId() { Owner owner6 = this.clinicService.findOwnerById(6); int found = owner6.getPets().size(); Pet pet = new Pet(); pet.setName("bowser"); Collection<PetType> types = this.clinicService.findPetTypes(); pet.setType(EntityUtils.getById(types, PetType.class, 2)); pet.setBirthDate(new LocalDate()); owner6.addPet(pet); assertThat(owner6.getPets().size()).isEqualTo(found + 1); this.clinicService.savePet(pet); this.clinicService.saveOwner(owner6); owner6 = this.clinicService.findOwnerById(6); assertThat(owner6.getPets().size()).isEqualTo(found + 1); // checks that id has been generated assertThat(pet.getId()).isNotNull(); }
Example 2
Source File: AbstractClinicServiceTests.java From DevOps-for-Web-Development with MIT License | 6 votes |
@Test @Transactional public void shouldInsertPetIntoDatabaseAndGenerateId() { Owner owner6 = this.clinicService.findOwnerById(6); int found = owner6.getPets().size(); Pet pet = new Pet(); pet.setName("bowser"); Collection<PetType> types = this.clinicService.findPetTypes(); pet.setType(EntityUtils.getById(types, PetType.class, 2)); pet.setBirthDate(new Date()); owner6.addPet(pet); assertThat(owner6.getPets().size()).isEqualTo(found + 1); this.clinicService.savePet(pet); this.clinicService.saveOwner(owner6); owner6 = this.clinicService.findOwnerById(6); assertThat(owner6.getPets().size()).isEqualTo(found + 1); // checks that id has been generated assertThat(pet.getId()).isNotNull(); }
Example 3
Source File: AbstractClinicServiceTests.java From docker-workflow-plugin with MIT License | 6 votes |
@Test @Transactional public void shouldInsertPetIntoDatabaseAndGenerateId() { Owner owner6 = this.clinicService.findOwnerById(6); int found = owner6.getPets().size(); Pet pet = new Pet(); pet.setName("bowser"); Collection<PetType> types = this.clinicService.findPetTypes(); pet.setType(EntityUtils.getById(types, PetType.class, 2)); pet.setBirthDate(new DateTime()); owner6.addPet(pet); assertThat(owner6.getPets().size()).isEqualTo(found + 1); this.clinicService.savePet(pet); this.clinicService.saveOwner(owner6); owner6 = this.clinicService.findOwnerById(6); assertThat(owner6.getPets().size()).isEqualTo(found + 1); // checks that id has been generated assertThat(pet.getId()).isNotNull(); }
Example 4
Source File: AbstractClinicServiceTests.java From audit4j-demo with Apache License 2.0 | 6 votes |
@Test @Transactional public void shouldInsertPetIntoDatabaseAndGenerateId() { Owner owner6 = this.clinicService.findOwnerById(6); int found = owner6.getPets().size(); Pet pet = new Pet(); pet.setName("bowser"); Collection<PetType> types = this.clinicService.findPetTypes(); pet.setType(EntityUtils.getById(types, PetType.class, 2)); pet.setBirthDate(new DateTime()); owner6.addPet(pet); assertThat(owner6.getPets().size()).isEqualTo(found + 1); this.clinicService.savePet(pet); this.clinicService.saveOwner(owner6); owner6 = this.clinicService.findOwnerById(6); assertThat(owner6.getPets().size()).isEqualTo(found + 1); // checks that id has been generated assertThat(pet.getId()).isNotNull(); }
Example 5
Source File: AbstractClinicServiceTests.java From DevOps-for-Web-Development with MIT License | 5 votes |
@Test @Transactional public void shouldUpdatePetName() throws Exception { Pet pet7 = this.clinicService.findPetById(7); String oldName = pet7.getName(); String newName = oldName + "X"; pet7.setName(newName); this.clinicService.savePet(pet7); pet7 = this.clinicService.findPetById(7); assertThat(pet7.getName()).isEqualTo(newName); }
Example 6
Source File: AbstractClinicServiceTests.java From DevOps-for-Web-Development with MIT License | 5 votes |
@Test @Transactional public void shouldUpdatePetName() throws Exception { Pet pet7 = this.clinicService.findPetById(7); String oldName = pet7.getName(); String newName = oldName + "X"; pet7.setName(newName); this.clinicService.savePet(pet7); pet7 = this.clinicService.findPetById(7); assertThat(pet7.getName()).isEqualTo(newName); }
Example 7
Source File: AbstractClinicServiceTests.java From docker-workflow-plugin with MIT License | 5 votes |
@Test @Transactional public void sholdUpdatePetName() throws Exception { Pet pet7 = this.clinicService.findPetById(7); String oldName = pet7.getName(); String newName = oldName + "X"; pet7.setName(newName); this.clinicService.savePet(pet7); pet7 = this.clinicService.findPetById(7); assertThat(pet7.getName()).isEqualTo(newName); }
Example 8
Source File: AbstractClinicServiceTests.java From audit4j-demo with Apache License 2.0 | 5 votes |
@Test @Transactional public void sholdUpdatePetName() throws Exception { Pet pet7 = this.clinicService.findPetById(7); String oldName = pet7.getName(); String newName = oldName + "X"; pet7.setName(newName); this.clinicService.savePet(pet7); pet7 = this.clinicService.findPetById(7); assertThat(pet7.getName()).isEqualTo(newName); }