*/
protected ExpressionFactory createExpressionFactory()
{
TestConfig testConfig = getTestJavaClass().getAnnotation(TestConfig.class);
if (testConfig != null && testConfig.expressionFactory() != null &&
testConfig.expressionFactory().length() > 0)
{
return (ExpressionFactory) ClassUtils.newInstance(
testConfig.expressionFactory(), ExpressionFactory.class);
}
return new MockExpressionFactory();