/**
* @throws Exception
*/
@Before
public void setUp() throws Exception {
this.personService = new PersonServiceImpl();
MockitoAnnotations.initMocks(this);
when(personRepo.findOne(anyLong())).thenReturn(person);
when(personRepo.findAll()).thenReturn(people);