chk("to ${acc_mosaic_importer};", "to mosaic_importer;");
}
@Test
public void transferParameteriserProperties(){
final Properties uMigrateProperties = mock(Properties.class);
final Properties scriptProperties = mock(Properties.class);
doThrow(new NullPointerException()).when(scriptProperties).setProperty(anyString(), (String) eq(null));
when(uMigrateProperties.getProperty(UMigrateProperty.PARAMETERISER_PROPERTIES.getKey())).thenReturn("acc_mosaic_importer,acc_mosaic,an_undefined_param,emptystr_param");
when(uMigrateProperties.getProperty("acc_mosaic_importer")).thenReturn("mosaic_importer");
when(uMigrateProperties.getProperty("acc_mosaic")).thenReturn("mosaic");
when(uMigrateProperties.getProperty("an_undefined_param")).thenReturn(null);