* method, defined by its beaninfo.
*/
public void testInstantiate_NotRegularGetter() throws Exception {
MockPersistenceDelegate pd = new MockPersistenceDelegate(
new String[] { "prop" });
MockFoo2 b = new MockFoo2(2);
Expression e = pd.instantiate(b, new Encoder());
assertSame(b, e.getValue());
assertSame(MockFoo2.class, e.getTarget());
assertEquals("new", e.getMethodName());