Fix #101 display the pet type when using the JDBC profile

This commit is contained in:
Antoine Rey 2015-10-13 18:41:18 +02:00
parent cb0504ee97
commit 4bb829cbd1
3 changed files with 6 additions and 1 deletions

View file

@ -69,6 +69,8 @@ public abstract class AbstractClinicServiceTests {
Owner owner = this.clinicService.findOwnerById(1);
assertThat(owner.getLastName()).startsWith("Franklin");
assertThat(owner.getPets().size()).isEqualTo(1);
assertThat(owner.getPets().get(0).getType()).isNotNull();
assertThat(owner.getPets().get(0).getType().getName()).isEqualTo("cat");
}
@Test