assertEquals ("ZERO", sp.rdp ("PUT"));
assertEquals ("ZERO", sp.inp ("PUT"));
assertNull (sp.rdp ("PUT"));
}
public void testPersistentContext() throws Exception {
Context ctx = new Context();
ctx.put("P", "ABC", true);
ISOMsg m = new ISOMsg("0800");
m.set(11, "000001");
ctx.put("ISOMSG", m, true);
sp.out("CTX", ctx);
assertNotNull("entry should not be null", sp.in("CTX"));
}