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