Added support for sortParamsByRequiredFlag config option to C# and Python

This commit is contained in:
Steffen Furholm
2015-10-31 01:14:17 +01:00
parent 28069fa1b4
commit 5da0b96f17
6 changed files with 25 additions and 9 deletions

View File

@@ -38,6 +38,7 @@ public class CSharpClientOptionsTest extends AbstractOptionsTest {
ImmutableMap.Builder<String, String> builder = new ImmutableMap.Builder<String, String>();
return builder.put(CodegenConstants.PACKAGE_NAME, PACKAGE_NAME_VALUE)
.put(CodegenConstants.PACKAGE_VERSION, PACKAGE_VERSION_VALUE)
.put(CodegenConstants.SORT_PARAMS_BY_REQUIRED_FLAG, "true")
.build();
}
}

View File

@@ -38,6 +38,7 @@ public class PythonClientOptionsTest extends AbstractOptionsTest {
ImmutableMap.Builder<String, String> builder = new ImmutableMap.Builder<String, String>();
return builder.put(CodegenConstants.PACKAGE_NAME, PACKAGE_NAME_VALUE)
.put(CodegenConstants.PACKAGE_VERSION, PACKAGE_VERSION_VALUE)
.put(CodegenConstants.SORT_PARAMS_BY_REQUIRED_FLAG, "true")
.build();
}
}