// fails only when running from command line, must be threading issue
@Test(enabled = false)
public void test_Clear_Cache()
{
ExpressionEvaluator evaluator = newMock(ExpressionEvaluator.class);
ExpressionCacheImpl ec = new ExpressionCacheImpl();
ec.setEvaluator(evaluator);
BasicObject target = new BasicObject();
OgnlContext context = new OgnlContext();
expect(evaluator.createContext(target)).andReturn(context).anyTimes();
replay();
Node e1 = (Node)ec.getCompiledExpression(target, "value");