Map<String, String> env = startScriptEnvPropWrapper.getValue();
validateStartScriptEnv(env);
// "startScriptArgs" prop
PropertySimple startScriptArgsProp = pluginConfig.getSimple("startScriptArgs");
ListPropertySimpleWrapper startScriptArgsPropWrapper = new ListPropertySimpleWrapper(startScriptArgsProp);
List<String> args = startScriptArgsPropWrapper.getValue();
Assert.assertEquals(args, getExpectedStartScriptArgs(), "Plugin config prop [startScriptArgs]");
}