}
@Test
public void testYamlConstructorANDRepresenterWithPropertyUtils() {
Constructor constructor = new Constructor();
PropertyUtils pu_c = new PropertyUtils();
constructor.setPropertyUtils(pu_c);
Representer representer = new Representer();
PropertyUtils pu_r = new PropertyUtils();
representer.setPropertyUtils(pu_r);
Yaml yaml = new Yaml(constructor, representer);
assertSame(pu_c, yaml.constructor.getPropertyUtils());
assertSame(pu_r, yaml.representer.getPropertyUtils());
}