testInputOutputFn(wt, j, w);
}
@Test
public void testTupleN() throws Exception {
TupleN j = new TupleN("a", "b", "c", "d", "e");
Text[] t = new Text[] { new Text("a"), new Text("b"), new Text("c"), new Text("d"),
new Text("e"), };
TupleWritable w = new TupleWritable(t);
WritableType<?, ?> wt = Writables.tuples(Writables.strings(), Writables.strings(), Writables.strings(),
Writables.strings(), Writables.strings());