// Map size
String[] mapContents = new String[]{"key1", "value1", "key2", "value2"};
Map<String, Object> map = Util.createMap(mapContents);
expected = new Long(2);
t.set(0, map);
size = new MapSize();
msg = "[Testing MapSize on input type: Map]";
assertTrue(msg, expected.equals(size.exec(t)));
// Bag size
Tuple t1 = Util.createTuple(new String[]{"a", "b", "c"});