1 16 package org.apache.commons.betwixt; 17 18 import org.apache.commons.betwixt.io.BeanReader; 19 20 import junit.framework.TestCase; 21 22 25 public class TestCyclicRegistration extends TestCase { 26 27 public void testListReferenceCycle() throws Exception { 28 29 BeanReader reader = new BeanReader(); 30 reader.registerBeanClass(PlanetBean.class); 31 } 32 } 33 | Popular Tags |