Package org.kohsuke.github.GHPullRequestCommitDetail

Examples of org.kohsuke.github.GHPullRequestCommitDetail.Commit


    given(committer.getName()).willReturn(this.committerName);

      PagedIterator<GHPullRequestCommitDetail> itr = Mockito.mock(PagedIterator.class);
      PagedIterable pagedItr = Mockito.mock(PagedIterable.class);

      Commit commit = mock(Commit.class);
      GHPullRequestCommitDetail commitDetail = mock(GHPullRequestCommitDetail.class);
     
     
      given(pr.listCommits()).willReturn(pagedItr);
     
      given(pagedItr.iterator()).willReturn(itr);
     
      given(itr.hasNext()).willReturn(true, false);
      given(itr.next()).willReturn(commitDetail);
     
      given(commitDetail.getCommit()).willReturn(commit);
      given(commit.getCommitter()).willReturn(committer);  
     
    given(cause.getCommentBody()).willReturn(comment);
  }
View Full Code Here


 
  private boolean isOwnCode(GHPullRequest pr, GHUser committer) {
    try {
      String commentorName = committer.getName();
      for (GHPullRequestCommitDetail detail : pr.listCommits()) {
        Commit commit = detail.getCommit();
        String committerName = commit.getCommitter().getName();
       
        if (committerName.equalsIgnoreCase(commentorName)) {
          return true;
        }
      }
View Full Code Here

TOP

Related Classes of org.kohsuke.github.GHPullRequestCommitDetail.Commit

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.