Package org.zkybase.web.controller.person

Examples of org.zkybase.web.controller.person.PersonScmController


  /**
   * @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>());
View Full Code Here

TOP

Related Classes of org.zkybase.web.controller.person.PersonScmController

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.