use of org.apereo.portal.layout.dlm.remoting.registry.v43.PortletCategoryBean in project uPortal by Jasig.
the class PortletCategoryBeanTest method testEqualsDifferentID.
@Test
public void testEqualsDifferentID() {
PortletCategoryBean pcb1 = buildTestPortletCategoryBean("id1", "name1", "desc");
PortletCategoryBean pcb2 = buildTestPortletCategoryBean("id2", "name2", "desc");
assertFalse(pcb1.equals(pcb2));
}
Aggregations