@Before
public void setUp() throws Exception {
expressionFactory = new ExpressionFactoryImpl();
bean = new Bean();
person = new Person();
bean.setString("foo");
ArrayList<String> list = new ArrayList<String>(1);
list.add("bar");
bean.setList(list);
HashMap<String, String> map = new HashMap<String, String>();