Package org.eclipse.egit.ui.common

Examples of org.eclipse.egit.ui.common.RepoRemoteBranchesPage.cancel()


    remoteBranches.assertErrorMessage(NLS.bind(
        UIText.SourceBranchPage_CompositeTransportErrorMessage,
        "Exception caught during execution of ls-remote command",
        "git://no.example.com/EGIT: unknown host"));
    remoteBranches.assertCannotProceed();
    remoteBranches.cancel();
  }

  // TODO network timeouts seem to be longer on cental EGit build
  // Test is ignored to fix the build
  @Ignore
View Full Code Here


    remoteBranches.assertErrorMessage(NLS.bind(
        UIText.SourceBranchPage_CompositeTransportErrorMessage,
        "Exception caught during execution of ls-remote command",
        "git://localhost:80/EGIT: Connection refused"));
    remoteBranches.assertCannotProceed();
    remoteBranches.cancel();
  }

  // TODO: Broken, seems that this takes forever and does not come back with
  // an error. Perhaps set a higher timeout for this test ?
  @Ignore
View Full Code Here

    RepoRemoteBranchesPage remoteBranches = repoProperties
        .nextToRemoteBranches("git://www.example.com/EGIT");
    remoteBranches
        .assertErrorMessage("git://www.example.com/EGIT: unknown host");
    remoteBranches.assertCannotProceed();
    remoteBranches.cancel();
  }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.