using NUnit.Framework; using System; using System.Collections.Generic; using IO.Swagger.Client; namespace SwaggerClient.TestApiClient { public class TestApiClient { [Test ()] public void TestParameterToString () { ApiClient api = new ApiClient (); // test array of string List statusList = new List(new String[] {"available", "sold"}); Assert.AreEqual("available,sold", api.ParameterToString (statusList)); // test array of int List numList = new List(new int[] {1, 37}); Assert.AreEqual("1,37", api.ParameterToString (numList)); } } }