*/
public void XtestSeriazableSubObjectRelation() throws Exception
{
log_.info("testSerializableSubObjectRelation() ....");
Student ben = new Student();
ben.setName("Ben");
ben.setYear("9th grade");
CacheObject co1 = new CacheObject("1");
ben.setCO1(co1);
Student elynne = new Student();
elynne.setName("Elynne");
elynne.setYear("9th grade");
// Same co object
elynne.setCO1(co1);
cache_.putObject("/ben", ben);
cache_.putObject("/elynne", elynne);
Student be = (Student)cache1_.getObject("/ben");
Student el = (Student)cache1_.getObject("/elynne");
assertNotNull("CacheObject should not be null", be.getCO1());
assertNotNull("CacheObject should not be null", el.getCO1());
assertEquals("Both co object should be the same", be.getCO1().getId(), el.getCO1().getId());
assertTrue("Both co should be the same reference", be.getCO1() == el.getCO1());
}