Searched refs:EmptyBean (Results 1 – 2 of 2) sorted by relevance
30 EmptyBean bean = (EmptyBean) yaml in testEmptyBean()42 EmptyBean bean = beanLoader.loadAs( in testEmptyBean1()44 EmptyBean.class); in testEmptyBean1()55 EmptyBean bean = beanLoader.loadAs("!!Bla-bla-bla {}", EmptyBean.class); in testEmptyBean2()66 EmptyBean bean = beanLoader.loadAs("{ }", EmptyBean.class); in testEmptyBean3()77 EmptyBean bean = beanLoader.loadAs("", EmptyBean.class); in testEmptyBean4()86 EmptyBean bean = beanLoader.loadAs("!Bla-bla-bla {}", EmptyBean.class); in testEmptyBean5()98 beanLoader.loadAs("{", EmptyBean.class); in testEmptyBean6()107 public static class EmptyBean implements Serializable { class in ConstructEmptyBeanTest112 public EmptyBean() { in EmptyBean() method in ConstructEmptyBeanTest.EmptyBean
161 representer.addClassTag(EmptyBean.class, (Tag) null); in testRepresenterAddNull()169 EmptyBean bean = new EmptyBean(); in testRepresenterEmptyBean()181 public static class EmptyBean { class in RepresenterTest