Package org.kohsuke.github

Examples of org.kohsuke.github.GHPullRequestCommitDetail$Tree


public class TreeTest
{
   public static void main( String args[] )
   {
      Tree tree = new Tree();
      int value;
      Random randomNumber = new Random();

      System.out.println( "Inserting the following values: " );

      // insert 10 random integers from 0-99 in tree
      for ( int i = 1; i <= 10; i++ )
      {
         value = randomNumber.nextInt( 100 );
         System.out.print( value + " " );
         tree.insertNode( value );
      } // end for

      System.out.println ( "\n\nPreorder traversal" );
      tree.preorderTraversal(); // perform preorder traversal of tree

      System.out.println ( "\n\nInorder traversal" );
      tree.inorderTraversal(); // perform inorder traversal of tree

      System.out.println ( "\n\nPostorder traversal" );
      tree.postorderTraversal(); // perform postorder traversal of tree
      System.out.println();
   } // end main
View Full Code Here


      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

TOP

Related Classes of org.kohsuke.github.GHPullRequestCommitDetail$Tree

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.