Package com.demo

Source Code of com.demo.IntrospectionJavaTests

package com.demo;

import org.codehaus.groovy.grails.commons.spring.GrailsWebApplicationContext;
import org.junit.Test;
import org.springframework.beans.BeanWrapperImpl;

public class IntrospectionJavaTests {

  @Test
  public void testSomething() {
    Object ctx = new GrailsWebApplicationContext();
    BeanWrapperImpl wrapper = new BeanWrapperImpl(ctx);
    assert wrapper.isReadableProperty("autowireCapableBeanFactory");
  }

  void getMessageSource() {
    //return null;
  }
}
TOP

Related Classes of com.demo.IntrospectionJavaTests

TOP
Copyright © 2018 www.massapi.com. 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.