}
@Test
public void properties() throws WookieConnectorException, IOException{
HashMap<String, Widget> widgets = service.getAvailableWidgets();
WidgetInstance instance = service.getOrCreateInstance((Widget)widgets.values().toArray()[0]);
assertNotNull("Retrieved widget instance is null", instance);
service.setPropertyForInstance(instance, true, "test_property2", "test data");
String data = service.getPropertyForInstance(instance, "test_property2");
assertNotNull ( "Data from property is null", data );
service.updatePropertyForInstance(instance, true, "test_property2", "new test data");