public void testCustomPropertyHandler() {
MVEL.COMPILER_OPT_ALLOW_OVERRIDE_ALL_PROPHANDLING = true;
PropertyHandlerFactory.registerPropertyHandler(SampleBean.class,
new SampleBeanAccessor());
assertEquals("dog",
test("foo.sampleBean.bar.name"));
PropertyHandlerFactory.unregisterPropertyHandler(SampleBean.class);
MVEL.COMPILER_OPT_ALLOW_OVERRIDE_ALL_PROPHANDLING = false;