Package net.emaze.dysfunctional.dispatching.delegates

Examples of net.emaze.dysfunctional.dispatching.delegates.JavaIntrospector


*/
public class JavaIntrospectorTest {

    @Test
    public void canIntrospectBean() {
        final PropertyDescriptor[] properties = new JavaIntrospector().perform(SimpleBean.class, Object.class);
        Assert.assertEquals(1, properties.length);
    }
View Full Code Here


        Assert.assertEquals(1, properties.length);
    }
   
    @Test(expected=IllegalStateException.class)
    public void introspectingWithWrongBaseClassYieldsException() {
        new JavaIntrospector().perform(SimpleBean.class, UnrelatedBean.class);
    }
View Full Code Here

TOP

Related Classes of net.emaze.dysfunctional.dispatching.delegates.JavaIntrospector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.