RESOLVED - BATCH-900: Retreive null values from the ExecutionContext

This commit is contained in:
robokaso
2008-11-03 19:30:56 +00:00
parent aa90589ea4
commit 277c7f40ae
2 changed files with 8 additions and 2 deletions

View File

@@ -116,6 +116,7 @@ public class ExecutionContextTests {
public void testPutNull(){
//putting null should work
context.put("1", null);
assertNull(context.get("1"));
}
@Test