Package com.sola.instagram.model

Examples of com.sola.instagram.model.Media


    /*
     * Test that no Exception is thrown for a valid user id
     */
    Random rand = new Random(19580427);
    InstagramSession session = getNewSession();
    Media media = session.getPopularMedia().get(rand.nextInt() % 10);
    //Comment comment = session.postComment(media.getId(), "nice pic");
  }
View Full Code Here


  @Test
  public void testRemoveComment() throws Exception,
      InterruptedException {
    Random rand = new Random(19580427);
    InstagramSession session = getNewSession();
    Media media = session.getPopularMedia().get(rand.nextInt() % 10);
    //Comment comment = session.postComment(media.getId(), "nice pic");
    //Thread.sleep(5);
    /*
     * Test that no Exception is thrown for a valid comment id
     */
 
View Full Code Here

  @Test
  public void testLikingAndUnlikingMedia() throws Exception {
    Random rand = new Random(19580427);
    InstagramSession session = getNewSession();
    Media media = session.getPopularMedia().get(rand.nextInt() % 10);
    session.likeMedia(media.getId());
    session.removeMediaLike(media.getId());
  }
View Full Code Here

TOP

Related Classes of com.sola.instagram.model.Media

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.