/**
* Test {@link DashboardBean}
*/
@Test
public void testDashboardBean(){
final DashboardBean boardBean = new DashboardBean();
boardBean.setDashboardId(1L);
boardBean.setDashboardName("My Dashboard");
boardBean.setDashboardDesc("My First Dashboard");
boardBean.setFavorite(Boolean.TRUE);
boardBean.setLayout("AAA");
boardBean.setSequence(1);
boardBean.setFavoriteCounter(5);
boardBean.setSelected(Boolean.TRUE);
assertNotNull(boardBean);
assertNotNull(boardBean.getDashboardId());
assertNotNull(boardBean.getDashboardName());
assertNotNull(boardBean.getDashboardDesc());
assertNotNull(boardBean.getFavorite());
assertNotNull(boardBean.getLayout());
assertNotNull(boardBean.getSequence());
assertNotNull(boardBean.getFavoriteCounter());
assertNotNull(boardBean.getSelected());
}