Class transformed = _classPool.toClass(targetObjectCtClass, _loader);
Object target = ct.createInstantiator(transformed).newInstance(resources);
PropertyAccess access = new PropertyAccessImpl();
assertEquals(access.get(target, "value"), "Tapestry");
try
{
access.set(target, "value", "anything");
unreachable();
}
catch (RuntimeException ex)
{
// The PropertyAccess layer adds a wrapper exception around the real one.