[csharp] Collections options tests, fix model using directive

This commit is contained in:
Jim Schubert 2016-01-24 16:25:20 -05:00
parent 0bb30ddccd
commit 2e958f9223
2 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,7 @@ using System.IO;
using System.Text; using System.Text;
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Runtime.Serialization; using System.Runtime.Serialization;
using Newtonsoft.Json; using Newtonsoft.Json;

View File

@ -42,6 +42,10 @@ public class CSharpClientOptionsTest extends AbstractOptionsTest {
times = 1; times = 1;
clientCodegen.setPackageGuid(CSharpClientOptionsProvider.PACKAGE_GUID_VALUE); clientCodegen.setPackageGuid(CSharpClientOptionsProvider.PACKAGE_GUID_VALUE);
times = 1; times = 1;
clientCodegen.setUseCollection(false);
times = 1;
clientCodegen.setReturnICollection(false);
times = 1;
}}; }};
} }
} }