- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for testGetBeanDesc (0.15 sec)
-
src/test/java/org/codelibs/core/beans/factory/BeanDescFactoryTest.java
import org.codelibs.core.beans.BeanDesc; import org.junit.Test; /** * @author higa */ public class BeanDescFactoryTest { /** * @throws Exception */ @Test public void testGetBeanDesc() throws Exception { final BeanDesc beanDesc = BeanDescFactory.getBeanDesc(MyBean.class); assertThat(BeanDescFactory.getBeanDesc(MyBean.class), is(sameInstance(beanDesc))); } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java
final MyDto dto = new MyDto(); pd.setValue(dto, "ONE"); assertEquals(MyEnum.ONE, dto.myEnum); } /** * @throws Exception */ @Test public void testGetBeanDesc() throws Exception { final BeanDesc beanDesc = new BeanDescImpl(MyBean.class); final PropertyDesc propDesc = beanDesc.getPropertyDesc("URL"); assertThat(propDesc.getBeanDesc(), is(notNullValue()));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 11K bytes - Viewed (0)