deleteTempDirs();
}
}
public void testMinTextCombiner() throws Exception {
MinTextCombiner combiner = new MinTextCombiner();
Text a = new Text("1");
Text b = new Text("2");
Text d = new Text("4");
Text c = new Text("3");
List<Text> asList = Arrays.asList(new Text[] { a, b, c, d });
Text combine = combiner.combine(asList);
assertEquals(combine, a);
}