WorkContext ctx = new WorkContextImpl();
ctx.clearIdentifier(this);
}
public void testNullIndentifier() throws Exception {
WorkContext ctx = new WorkContextImpl();
Object id = new Object();
ctx.setIdentifier(this, id);
ctx.clearIdentifier(null);
assertEquals(id, ctx.getIdentifier(this));
}