Player female = new Player(1, "Alberta", Gender.FEMALE);
marriageService.marry(male, female);
Player son = new Player(2, "Albertino", Gender.MALE);
giveBirth(male, female, son);
male.kill();
Country country = new Country(0, "Country");
propertyService.setOwnership(male, country);
reinject();
turntask.execute();
Object owner = propertyService.getOwnership(country);
assertNotNull("The country should be owned; Current owner: " + owner,