Assert.assertEquals(menu, FacetUtils.getContextMenu(panel));
}
@Test
public void testDropDownMenu() {
UIPanel panel = new UIPanel();
Assert.assertNull(FacetUtils.getContextMenu(panel));
UIMenu menu = new UIMenu();
FacetUtils.setDropDownMenu(panel, menu);
Assert.assertEquals(menu, FacetUtils.getDropDownMenu(panel));
}