assertNull(MtContextCallable.get(null));
}
@Test
public void test_gets() throws Exception {
Callable<String> call1 = new Call("1", null);
Callable<String> call2 = new Call("1", null);
Callable<String> call3 = new Call("1", null);
@SuppressWarnings("unchecked")
List<MtContextCallable<String>> callList = MtContextCallable.gets(
Arrays.asList(call1, call2, null, call3));