/**
* Test {@link GadgetPropertiesBean}.
*/
@Test
public void testGadgetPropertiesBean(){
final GadgetPropertiesBean gadgetProperties = new GadgetPropertiesBean();
gadgetProperties.setPropertyId(1L);
gadgetProperties.setGadgetPropName("my gadget");
gadgetProperties.setGadgetPropValue("");
gadgetProperties.setGadgetId(1L);
gadgetProperties.setUserAccount(createUserAccountBean("admin", "admin@encuestame.org"));
assertNotNull(gadgetProperties);
assertNotNull(gadgetProperties.getPropertyId());
assertNotNull(gadgetProperties.getGadgetPropName());
assertNotNull(gadgetProperties.getGadgetPropValue());
assertNotNull(gadgetProperties.getGadgetId());
assertNotNull(gadgetProperties.getUserAccount());
}