1   package com.sun.syndication.fetcher.impl;
2   
3   import com.sun.syndication.fetcher.FeedFetcher;
4   
5   /***
6    * @author Nick Lothian
7    */
8   public class HttpClientFeedFetcherTest extends AbstractJettyTest {
9   
10  	public HttpClientFeedFetcherTest(String s) {
11  		super(s);
12  	}
13  	
14  	/***
15  	 * @see com.sun.syndication.fetcher.impl.AbstractJettyTest#getFeedFetcher()
16  	 */
17  	protected FeedFetcher getFeedFetcher() {		
18  		return new HttpClientFeedFetcher();
19  	}
20  	
21  	protected FeedFetcher getFeedFetcher(FeedFetcherCache cache) {
22  		return new HttpClientFeedFetcher(cache);
23  	}
24  	
25  	
26  	
27  }