BATCH-483: putting null in an ExecutionContext no longer throws an exception. Also added a unit test.

This commit is contained in:
lucasward
2008-03-18 19:12:36 +00:00
parent 94b5615245
commit e5c26328bf
2 changed files with 8 additions and 1 deletions

View File

@@ -95,4 +95,9 @@ public class ExecutionContextTests extends TestCase{
}
}
public void testPutNull(){
//putting null should work
context.put("1", null);
}
}