{
Method verifyMethod = TestInterface.class.getMethod("getTestValue", new Class[0]);
RuntimeInstance ri = new RuntimeInstance();
Introspector introspector = ri.getIntrospector();
Method testMethod = introspector.getMethod(TestObject.class, "getTestValue", new Object[0]);
assertNotNull(testMethod);
assertEquals("Method object does not match!", verifyMethod, testMethod);
}