예제 #1
0
 public void testGetAfterRemoveReturnsNull() {
   final String testKey = "hefty";
   final Object testValue = new Object();
   context.put(testKey, testValue);
   context.remove(testKey);
   assertNull("remove() should result in null value for get()", context.get(testKey));
 }