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