* With cache whose datasize is large (ok).
* @throws Exception if failed
*/
@Test
public void cached_large() throws Exception {
FlowDescriptionDriver flow = new FlowDescriptionDriver();
In<Cached> in = flow.createIn("in1", new ImportCached("default", LockType.UNUSED, null, DataSize.LARGE));
Out<Cached> out = flow.createOut("out1", new Export("default", Cached.class));
FlowDescription desc = new IdentityFlow<Cached>(in, out);
JobflowInfo info = compile(flow, desc);
assertThat(info, not(nullValue()));
}