Assert.assertEquals(1L, cat3.getId().longValue());
Assert.assertEquals("Gemma", cat3.getName());
Assert.assertEquals(1L, cat3.getVersion().longValue());
Dog dog = new Dog();
dog.setRegistrationNumber("ABC123");
dog.setDateOfBirth(new Date(System.currentTimeMillis()));
Ebean.save(dog);
List<Animal> animals = Ebean.find(Animal.class).findList();