For example, is it necessary to write a Unit test
for the following Method:
private PersonRepository personRepository;
@Autowired
public void setPersonRepository(PersonRepository personRepository) {
this.personRepository = personRepository;
}
What purpose would the test serve?