import test.reverspring.beans.BeanWithListWithConstructor;
import junit.framework.TestCase;
public class TestConstructor extends TestCase {
public void testConstructor() {
BeanWithConstructor bean = new BeanWithConstructor("pluto", new BeanWithClassAttribute());
System.out.println();
System.out.println(DescriptorGenerator.generateDescriptor(bean, "myBean"));
System.out.println();
}