public void testAbstract() throws Exception {
final ClassFieldExtractor ext = ClassFieldExtractorCache.getExtractor( TestAbstract.class,
"something",
getClass().getClassLoader() );
final TestAbstract obj = new TestAbstractImpl();
assertEquals( "foo",
(String) ext.getValue( null, obj ) );
}