1 2 3 4 package net.nutch.parse; 5 6 import java.io.*; 7 import net.nutch.io.*; 8 import net.nutch.pagedb.*; 9 import junit.framework.TestCase; 10 11 12 13 public class TestParseText extends TestCase { 14 public TestParseText(String name) { super(name); } 15 16 public void testParseText() throws Exception { 17 18 String page = "Hello World The Quick Brown Fox Jumped Over the Lazy Fox"; 19 20 ParseText s = new ParseText(page); 21 22 TestWritable.testWritable(s); 23 } 24 25 } 26 | Popular Tags |