1   /*
2    * Created on Feb 5, 2005
3    *
4    * TODO To change the template for this generated file go to
5    * Window - Preferences - Java - Code Style - Code Templates
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  		// this loads/instantiates all handlers
25  		ContentReaderFactory.getInstance();
26  	}
27  }