Interface GitHubMockContext
-
- All Known Subinterfaces:
GitHubMockSetupContext,GitHubMockVerificationContext
- All Known Implementing Classes:
GitHubMockContextImpl
public interface GitHubMockContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.kohsuke.github.GitHubclient(long id)<T extends org.kohsuke.github.GHObject>
TghObject(Class<T> type, long id)Object[]ghObjects()org.kohsuke.github.GHIssueissue(long id)org.kohsuke.github.GHPullRequestpullRequest(long id)org.kohsuke.github.GHRepositoryrepository(String id)
-
-
-
Method Detail
-
client
org.kohsuke.github.GitHub client(long id)
-
repository
org.kohsuke.github.GHRepository repository(String id)
-
issue
org.kohsuke.github.GHIssue issue(long id)
-
pullRequest
org.kohsuke.github.GHPullRequest pullRequest(long id)
-
ghObject
<T extends org.kohsuke.github.GHObject> T ghObject(Class<T> type, long id)
-
ghObjects
Object[] ghObjects()
-
-