use of org.apereo.portal.layout.dlm.remoting.JsonEntityBean in project uPortal by Jasig.
the class JsonEntityBeanTest method testEqualsCreatorIdDiff.
@Test
public void testEqualsCreatorIdDiff() {
String cid1 = "asdf";
String cid2 = "hjkl";
JsonEntityBean jeb1 = buildNullBean();
jeb1.setChildrenInitialized(true);
jeb1.setCreatorId(cid1);
JsonEntityBean jeb2 = buildNullBean();
jeb2.setChildrenInitialized(true);
jeb2.setCreatorId(cid2);
assertEquals(cid1.equals(cid2), jeb1.equals(jeb2));
}
use of org.apereo.portal.layout.dlm.remoting.JsonEntityBean in project uPortal by Jasig.
the class JsonEntityBeanTest method testEqualsEntityTypeNullTarget.
@Test
public void testEqualsEntityTypeNullTarget() {
EntityEnum ee = null;
JsonEntityBean jeb1 = buildNullBean();
jeb1.setChildrenInitialized(true);
jeb1.setCreatorId("");
jeb1.setDescription("");
jeb1.setEntityType(EntityEnum.PORTLET);
JsonEntityBean jeb2 = buildNullBean();
jeb2.setChildrenInitialized(true);
jeb2.setCreatorId("");
jeb2.setDescription("");
jeb2.setEntityType(ee);
assertFalse(jeb1.equals(jeb2));
}
use of org.apereo.portal.layout.dlm.remoting.JsonEntityBean in project uPortal by Jasig.
the class JsonEntityBeanTest method testEqualsCreatorIdNullTarget.
@Test
public void testEqualsCreatorIdNullTarget() {
JsonEntityBean jeb1 = buildNullBean();
jeb1.setChildrenInitialized(true);
jeb1.setCreatorId("");
JsonEntityBean jeb2 = buildNullBean();
jeb2.setChildrenInitialized(true);
jeb2.setCreatorId(null);
assertFalse(jeb1.equals(jeb2));
}
use of org.apereo.portal.layout.dlm.remoting.JsonEntityBean in project uPortal by Jasig.
the class JsonEntityBeanTest method testCompareToDiffCreatorId.
@Test
public void testCompareToDiffCreatorId() {
String val1 = "asdf";
String val2 = "hjkl";
JsonEntityBean jeb1 = buildBeanFromEntityGroup();
jeb1.setId(val1);
JsonEntityBean jeb2 = buildBeanFromEntityGroup();
jeb2.setId(val2);
assertEquals(val1.compareTo(val2), jeb1.compareTo(jeb2));
}
use of org.apereo.portal.layout.dlm.remoting.JsonEntityBean in project uPortal by Jasig.
the class JsonEntityBeanTest method testEqualsNull.
@Test
public void testEqualsNull() {
JsonEntityBean jeb1 = buildNullBean();
assertFalse(jeb1.equals(null));
}
Aggregations