/**
* @throws Exception
*/
@Before
public void setUp() throws Exception {
this.controller = new PersonScmController();
MockitoAnnotations.initMocks(this);
when(personRepository.findOne(anyLong())).thenReturn(person);
when(gitHub.userOperations()).thenReturn(userOperations);
when(userOperations.getFollowers(anyString())).thenReturn(new ArrayList<GitHubUser>());
when(userOperations.getFollowing(anyString())).thenReturn(new ArrayList<GitHubUser>());