* Ensures that initial properties are configured in the instance properly
*/
@Test
public void PropertyConfiguredWithSetProperty_tc003() {
Implementation samsungImpl = waitForImplByName(null, "SamsungSwitch");
Map<String, String> initialProperties = new HashMap<String, String>() {
{
put("property-01", "configured-01");
put("property-02", "configured-02");
put("property-03", "configured-03");
put("property-04", "configured-04");
put("property-05", "configured-05");
}
};
Instance samsungInst = samsungImpl.createInstance(null, null);
samsungInst.setProperty("property-01", "configured-01");
samsungInst.setProperty("property-02", "configured-02");
samsungInst.setProperty("property-03", "configured-03");
samsungInst.setProperty("property-04", "configured-04");