use of org.drools.core.util.asm.TestAbstract in project drools by kiegroup.
the class ClassFieldAccessorTest method testAbstract.
@Test
public void testAbstract() throws Exception {
final ClassFieldReader ext = store.getReader(TestAbstract.class, "something");
final TestAbstract obj = new TestAbstractImpl();
assertEquals("foo", (String) ext.getValue(null, obj));
}
Aggregations