/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/ |
HumanGenericsTest.java | 158 HumanGen son2 = (HumanGen) yaml.load(output); local 159 assertNotNull(son2); 162 HumanGen father2 = son2.getFather(); 164 assertEquals("Mother", son2.getMother().getName()); 166 assertSame(father2.getPartner(), son2.getMother()); 167 assertSame(father2, son2.getMother().getPartner()); 231 HumanGen2 son2 = beanLoader.loadAs(output, HumanGen2.class); local 232 assertNotNull(son2); 235 HumanGen2 father2 = son2.getFather(); 237 assertEquals("Mother", son2.getMother().getName()) 300 HumanGen3 son2 = (HumanGen3) yaml.load(output); local 453 HumanGen3 son2 = children2.iterator().next(); local [all...] |
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/ |
HumanTest.java | 140 Human son2 = beanLoader.loadAs(output, Human.class); local 141 assertNotNull(son2); 144 Human father2 = son2.getFather(); 146 assertEquals("Mother", son2.getMother().getName()); 148 assertSame(father2.getPartner(), son2.getMother()); 149 assertSame(father2, son2.getMother().getPartner()); 213 Human son2 = beanLoader.loadAs(output, Human.class); local 214 assertNotNull(son2); 217 Human father2 = son2.getFather(); 219 assertEquals("Mother", son2.getMother().getName()) 286 Human2 son2 = (Human2) yaml.load(output); local 353 Human3 son2 = (Human3) yaml.load(output); local 500 Human3 son2 = children2.iterator().next(); local 635 Human son2 = beanLoader.loadAs(output, Human.class); local [all...] |
Human_WithArrayOfChildrenTest.java | 158 Human_WithArrayOfChildren son2 = (Human_WithArrayOfChildren) yaml.load(output); local 159 checkSon(son2); 180 Human_WithArrayOfChildren son2 = (Human_WithArrayOfChildren) yaml.load(doc); local 181 checkSon(son2);
|