Home
last modified time | relevance | path

Searched refs:getPartner (Results 1 – 7 of 7) sorted by relevance

/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/
DHumanTest.java60 assertEquals("Mother", father2.getPartner().getName()); in testNoChildren()
89 assertEquals("Mother", father2.getPartner().getName()); in testNoChildrenPretty()
148 assertSame(father2.getPartner(), son2.getMother()); in testChildren()
149 assertSame(father2, son2.getMother().getPartner()); in testChildren()
153 assertSame(father2.getPartner().getChildren(), children2); in testChildren()
221 assertSame(father2.getPartner(), son2.getMother()); in testChildrenPretty()
222 assertSame(father2, son2.getMother().getPartner()); in testChildrenPretty()
226 assertSame(father2.getPartner().getChildren(), children2); in testChildrenPretty()
294 assertSame(father2.getPartner(), son2.getMother()); in testChildren2()
295 assertSame(father2, son2.getMother().getPartner()); in testChildren2()
[all …]
DHuman_WithArrayOfChildrenTest.java57 public Human_WithArrayOfChildren getPartner() { in getPartner() method in Human_WithArrayOfChildrenTest.Human_WithArrayOfChildren
129 assertSame(father2.getPartner(), son.getMother()); in checkSon()
130 assertSame(father2, son.getMother().getPartner()); in checkSon()
134 Human_WithArrayOfChildren[] mothersChildren = father2.getPartner().getChildren(); in checkSon()
DHuman.java49 public Human getPartner() { in getPartner() method in Human
DHuman3.java49 public Human3 getPartner() { in getPartner() method in Human3
DHuman2.java49 public Human2 getPartner() { in getPartner() method in Human2
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/generics/
DHumanGenericsTest.java66 assertEquals("Mother", father2.getPartner().getName()); in testNoChildren()
101 assertEquals("Mother", father2.getPartner().getName()); in testNoChildren2()
166 assertSame(father2.getPartner(), son2.getMother()); in testChildren()
167 assertSame(father2, son2.getMother().getPartner()); in testChildren()
171 assertSame(father2.getPartner().getChildren(), children2); in testChildren()
239 assertSame(father2.getPartner(), son2.getMother()); in testChildren2()
240 assertSame(father2, son2.getMother().getPartner()); in testChildren2()
244 assertSame(father2.getPartner().getChildren(), children2); in testChildren2()
308 assertSame(father2.getPartner(), son2.getMother()); in testChildren3()
309 assertSame(father2, son2.getMother().getPartner()); in testChildren3()
[all …]
DAbstractHumanGen.java78 public K getPartner() { in getPartner() method in AbstractHumanGen