}
public void IgnoretestCyclicReferencesDetected() {
PropertyStore a=new PropertyStore();
a.setProperty("a", "${b}");
PropertyStore b=new PropertyStore(a);
b.setProperty("b", "${a}");
try {
String value=b.getProperty("b");
fail("expected runtime exception");
}
catch(RuntimeException re) {
; // as expected
}