.runTest();
}
@Test
public void TestReduceDriver() throws IOException {
reduceDriver = ReduceDriver.newReduceDriver(new MyReduce());
List<IntWritable> inputs = new ArrayList<IntWritable>();
inputs.add(new IntWritable(1));
inputs.add(new IntWritable(2));
reduceDriver.withInput(new Text("abc"), inputs)
.withOutput(new Text("hello"), new IntWritable(1))