Package org.zkybase.web.controller.application

Examples of org.zkybase.web.controller.application.ApplicationScmController


  /**
   * @throws Exception
   */
  @Before
  public void setUp() throws Exception {
    this.controller = new ApplicationScmController();
    MockitoAnnotations.initMocks(this);
    when(applicationService.findOne(anyLong())).thenReturn(application);
    when(applicationService.findOneWithScm(anyLong())).thenReturn(application);
    when(sitemap.getNode(anyString())).thenReturn(node);
    when(gitHub.repoOperations()).thenReturn(repoOperations);
View Full Code Here

TOP

Related Classes of org.zkybase.web.controller.application.ApplicationScmController

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.