1   
2   
3   
4   
5   
6   
7   package net.sf.gumshoe.indexer;
8   
9   import junit.framework.TestCase;
10  
11  /***
12   * @author Gabor
13   *
14   * TODO To change the template for this generated type comment go to
15   * Window - Preferences - Java - Code Style - Code Templates
16   */
17  public class ContentReaderFactoryTest extends TestCase {
18  
19  	public static void main(String[] args) {
20  		junit.textui.TestRunner.run(ContentReaderFactoryTest.class);
21  	}
22  
23  	public void testGetInstance() {
24  		
25  		ContentReaderFactory.getInstance();
26  	}
27  }