Package com.dragontek.mygpoclient.extras

Source Code of com.dragontek.mygpoclient.extras.GoogleReaderApiTest

package com.dragontek.mygpoclient.extras;

import java.io.IOException;
import java.util.List;

import org.apache.http.client.ClientProtocolException;
import org.junit.Test;

import com.dragontek.mygpoclient.extras.GoogleReaderAPI;

import junit.framework.TestCase;

public class GoogleReaderApiTest extends TestCase {
  GoogleReaderAPI client;
  public GoogleReaderApiTest(String name) throws ClientProtocolException, IOException
  {
    super(name);
    client = new GoogleReaderAPI();
   
  }
 
  @Test
  public void testSearch() throws Exception {
   
    List<String> podcasts = client.getSubscriptions("Podder");
   
    for(String p : podcasts)
    {
      System.out.println(p);
     
    }
  }
 
 
}
TOP

Related Classes of com.dragontek.mygpoclient.extras.GoogleReaderApiTest

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.