forked from loafle/openapi-generator-original
[C#] fix validate (#16097)
* fix validation with discriminator using parent instead * add new files * add new workflow * fix
This commit is contained in:
@@ -0,0 +1,129 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using RestSharp;
|
||||
using Xunit;
|
||||
|
||||
using Org.OpenAPITools.Client;
|
||||
using Org.OpenAPITools.Api;
|
||||
// uncomment below to import models
|
||||
//using Org.OpenAPITools.Model;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing BodyApi
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the API endpoint.
|
||||
/// </remarks>
|
||||
public class BodyApiTests : IDisposable
|
||||
{
|
||||
private BodyApi instance;
|
||||
|
||||
public BodyApiTests()
|
||||
{
|
||||
instance = new BodyApi();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of BodyApi
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void InstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test 'IsType' BodyApi
|
||||
//Assert.IsType<BodyApi>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestBinaryGif
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestBinaryGifTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//var response = instance.TestBinaryGif();
|
||||
//Assert.IsType<System.IO.Stream>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestBodyApplicationOctetstreamBinary
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestBodyApplicationOctetstreamBinaryTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//System.IO.Stream? body = null;
|
||||
//var response = instance.TestBodyApplicationOctetstreamBinary(body);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestEchoBodyFreeFormObjectResponseString
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestEchoBodyFreeFormObjectResponseStringTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//Object? body = null;
|
||||
//var response = instance.TestEchoBodyFreeFormObjectResponseString(body);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestEchoBodyPet
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestEchoBodyPetTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//Pet? pet = null;
|
||||
//var response = instance.TestEchoBodyPet(pet);
|
||||
//Assert.IsType<Pet>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestEchoBodyPetResponseString
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestEchoBodyPetResponseStringTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//Pet? pet = null;
|
||||
//var response = instance.TestEchoBodyPetResponseString(pet);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestEchoBodyTagResponseString
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestEchoBodyTagResponseStringTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//Tag? tag = null;
|
||||
//var response = instance.TestEchoBodyTagResponseString(tag);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using RestSharp;
|
||||
using Xunit;
|
||||
|
||||
using Org.OpenAPITools.Client;
|
||||
using Org.OpenAPITools.Api;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing FormApi
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the API endpoint.
|
||||
/// </remarks>
|
||||
public class FormApiTests : IDisposable
|
||||
{
|
||||
private FormApi instance;
|
||||
|
||||
public FormApiTests()
|
||||
{
|
||||
instance = new FormApi();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of FormApi
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void InstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test 'IsType' FormApi
|
||||
//Assert.IsType<FormApi>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestFormIntegerBooleanString
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestFormIntegerBooleanStringTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//int? integerForm = null;
|
||||
//bool? booleanForm = null;
|
||||
//string? stringForm = null;
|
||||
//var response = instance.TestFormIntegerBooleanString(integerForm, booleanForm, stringForm);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using RestSharp;
|
||||
using Xunit;
|
||||
|
||||
using Org.OpenAPITools.Client;
|
||||
using Org.OpenAPITools.Api;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing HeaderApi
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the API endpoint.
|
||||
/// </remarks>
|
||||
public class HeaderApiTests : IDisposable
|
||||
{
|
||||
private HeaderApi instance;
|
||||
|
||||
public HeaderApiTests()
|
||||
{
|
||||
instance = new HeaderApi();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of HeaderApi
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void InstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test 'IsType' HeaderApi
|
||||
//Assert.IsType<HeaderApi>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestHeaderIntegerBooleanString
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestHeaderIntegerBooleanStringTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//int? integerHeader = null;
|
||||
//bool? booleanHeader = null;
|
||||
//string? stringHeader = null;
|
||||
//var response = instance.TestHeaderIntegerBooleanString(integerHeader, booleanHeader, stringHeader);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using RestSharp;
|
||||
using Xunit;
|
||||
|
||||
using Org.OpenAPITools.Client;
|
||||
using Org.OpenAPITools.Api;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing PathApi
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the API endpoint.
|
||||
/// </remarks>
|
||||
public class PathApiTests : IDisposable
|
||||
{
|
||||
private PathApi instance;
|
||||
|
||||
public PathApiTests()
|
||||
{
|
||||
instance = new PathApi();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of PathApi
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void InstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test 'IsType' PathApi
|
||||
//Assert.IsType<PathApi>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestsPathStringPathStringIntegerPathInteger
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestsPathStringPathStringIntegerPathIntegerTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//string pathString = null;
|
||||
//int pathInteger = null;
|
||||
//var response = instance.TestsPathStringPathStringIntegerPathInteger(pathString, pathInteger);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,158 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using RestSharp;
|
||||
using Xunit;
|
||||
|
||||
using Org.OpenAPITools.Client;
|
||||
using Org.OpenAPITools.Api;
|
||||
// uncomment below to import models
|
||||
//using Org.OpenAPITools.Model;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Api
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing QueryApi
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the API endpoint.
|
||||
/// </remarks>
|
||||
public class QueryApiTests : IDisposable
|
||||
{
|
||||
private QueryApi instance;
|
||||
|
||||
public QueryApiTests()
|
||||
{
|
||||
instance = new QueryApi();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of QueryApi
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void InstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test 'IsType' QueryApi
|
||||
//Assert.IsType<QueryApi>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestEnumRefString
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestEnumRefStringTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//StringEnumRef? enumRefStringQuery = null;
|
||||
//var response = instance.TestEnumRefString(enumRefStringQuery);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestQueryDatetimeDateString
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestQueryDatetimeDateStringTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//DateTime? datetimeQuery = null;
|
||||
//DateTime? dateQuery = null;
|
||||
//string? stringQuery = null;
|
||||
//var response = instance.TestQueryDatetimeDateString(datetimeQuery, dateQuery, stringQuery);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestQueryIntegerBooleanString
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestQueryIntegerBooleanStringTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//int? integerQuery = null;
|
||||
//bool? booleanQuery = null;
|
||||
//string? stringQuery = null;
|
||||
//var response = instance.TestQueryIntegerBooleanString(integerQuery, booleanQuery, stringQuery);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestQueryStyleDeepObjectExplodeTrueObject
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestQueryStyleDeepObjectExplodeTrueObjectTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//Pet? queryObject = null;
|
||||
//var response = instance.TestQueryStyleDeepObjectExplodeTrueObject(queryObject);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestQueryStyleDeepObjectExplodeTrueObjectAllOf
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestQueryStyleDeepObjectExplodeTrueObjectAllOfTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter? queryObject = null;
|
||||
//var response = instance.TestQueryStyleDeepObjectExplodeTrueObjectAllOf(queryObject);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestQueryStyleFormExplodeTrueArrayString
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestQueryStyleFormExplodeTrueArrayStringTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter? queryObject = null;
|
||||
//var response = instance.TestQueryStyleFormExplodeTrueArrayString(queryObject);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestQueryStyleFormExplodeTrueObject
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestQueryStyleFormExplodeTrueObjectTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//Pet? queryObject = null;
|
||||
//var response = instance.TestQueryStyleFormExplodeTrueObject(queryObject);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test TestQueryStyleFormExplodeTrueObjectAllOf
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestQueryStyleFormExplodeTrueObjectAllOfTest()
|
||||
{
|
||||
// TODO uncomment below to test the method and replace null with proper value
|
||||
//DataQuery? queryObject = null;
|
||||
//var response = instance.TestQueryStyleFormExplodeTrueObjectAllOf(queryObject);
|
||||
//Assert.IsType<string>(response);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing Bird
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class BirdTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for Bird
|
||||
//private Bird instance;
|
||||
|
||||
public BirdTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of Bird
|
||||
//instance = new Bird();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of Bird
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void BirdInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" Bird
|
||||
//Assert.IsType<Bird>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Size'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void SizeTest()
|
||||
{
|
||||
// TODO unit test for the property 'Size'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Color'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ColorTest()
|
||||
{
|
||||
// TODO unit test for the property 'Color'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing Category
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class CategoryTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for Category
|
||||
//private Category instance;
|
||||
|
||||
public CategoryTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of Category
|
||||
//instance = new Category();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of Category
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void CategoryInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" Category
|
||||
//Assert.IsType<Category>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Id'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void IdTest()
|
||||
{
|
||||
// TODO unit test for the property 'Id'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Name'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void NameTest()
|
||||
{
|
||||
// TODO unit test for the property 'Name'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DataQuery
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DataQueryTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DataQuery
|
||||
//private DataQuery instance;
|
||||
|
||||
public DataQueryTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DataQuery
|
||||
//instance = new DataQuery();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DataQuery
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DataQueryInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DataQuery
|
||||
//Assert.IsType<DataQuery>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Suffix'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void SuffixTest()
|
||||
{
|
||||
// TODO unit test for the property 'Suffix'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Text'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TextTest()
|
||||
{
|
||||
// TODO unit test for the property 'Text'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Date'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DateTest()
|
||||
{
|
||||
// TODO unit test for the property 'Date'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing DefaultValue
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class DefaultValueTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for DefaultValue
|
||||
//private DefaultValue instance;
|
||||
|
||||
public DefaultValueTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of DefaultValue
|
||||
//instance = new DefaultValue();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of DefaultValue
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void DefaultValueInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" DefaultValue
|
||||
//Assert.IsType<DefaultValue>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'ArrayStringEnumRefDefault'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ArrayStringEnumRefDefaultTest()
|
||||
{
|
||||
// TODO unit test for the property 'ArrayStringEnumRefDefault'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'ArrayStringEnumDefault'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ArrayStringEnumDefaultTest()
|
||||
{
|
||||
// TODO unit test for the property 'ArrayStringEnumDefault'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'ArrayStringDefault'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ArrayStringDefaultTest()
|
||||
{
|
||||
// TODO unit test for the property 'ArrayStringDefault'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'ArrayIntegerDefault'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ArrayIntegerDefaultTest()
|
||||
{
|
||||
// TODO unit test for the property 'ArrayIntegerDefault'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'ArrayString'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ArrayStringTest()
|
||||
{
|
||||
// TODO unit test for the property 'ArrayString'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'ArrayStringNullable'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ArrayStringNullableTest()
|
||||
{
|
||||
// TODO unit test for the property 'ArrayStringNullable'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'ArrayStringExtensionNullable'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ArrayStringExtensionNullableTest()
|
||||
{
|
||||
// TODO unit test for the property 'ArrayStringExtensionNullable'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'StringNullable'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void StringNullableTest()
|
||||
{
|
||||
// TODO unit test for the property 'StringNullable'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing NumberPropertiesOnly
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class NumberPropertiesOnlyTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for NumberPropertiesOnly
|
||||
//private NumberPropertiesOnly instance;
|
||||
|
||||
public NumberPropertiesOnlyTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of NumberPropertiesOnly
|
||||
//instance = new NumberPropertiesOnly();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of NumberPropertiesOnly
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void NumberPropertiesOnlyInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" NumberPropertiesOnly
|
||||
//Assert.IsType<NumberPropertiesOnly>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Number'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void NumberTest()
|
||||
{
|
||||
// TODO unit test for the property 'Number'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'VarFloat'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void VarFloatTest()
|
||||
{
|
||||
// TODO unit test for the property 'VarFloat'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'VarDouble'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void VarDoubleTest()
|
||||
{
|
||||
// TODO unit test for the property 'VarDouble'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,112 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing Pet
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class PetTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for Pet
|
||||
//private Pet instance;
|
||||
|
||||
public PetTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of Pet
|
||||
//instance = new Pet();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of Pet
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void PetInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" Pet
|
||||
//Assert.IsType<Pet>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Id'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void IdTest()
|
||||
{
|
||||
// TODO unit test for the property 'Id'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Name'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void NameTest()
|
||||
{
|
||||
// TODO unit test for the property 'Name'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Category'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void CategoryTest()
|
||||
{
|
||||
// TODO unit test for the property 'Category'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'PhotoUrls'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void PhotoUrlsTest()
|
||||
{
|
||||
// TODO unit test for the property 'PhotoUrls'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Tags'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TagsTest()
|
||||
{
|
||||
// TODO unit test for the property 'Tags'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Status'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void StatusTest()
|
||||
{
|
||||
// TODO unit test for the property 'Status'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing Query
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class QueryTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for Query
|
||||
//private Query instance;
|
||||
|
||||
public QueryTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of Query
|
||||
//instance = new Query();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of Query
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void QueryInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" Query
|
||||
//Assert.IsType<Query>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Id'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void IdTest()
|
||||
{
|
||||
// TODO unit test for the property 'Id'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Outcomes'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void OutcomesTest()
|
||||
{
|
||||
// TODO unit test for the property 'Outcomes'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing StringEnumRef
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class StringEnumRefTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for StringEnumRef
|
||||
//private StringEnumRef instance;
|
||||
|
||||
public StringEnumRefTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of StringEnumRef
|
||||
//instance = new StringEnumRef();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of StringEnumRef
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void StringEnumRefInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" StringEnumRef
|
||||
//Assert.IsType<StringEnumRef>(instance);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing Tag
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class TagTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for Tag
|
||||
//private Tag instance;
|
||||
|
||||
public TagTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of Tag
|
||||
//instance = new Tag();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of Tag
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TagInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" Tag
|
||||
//Assert.IsType<Tag>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Id'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void IdTest()
|
||||
{
|
||||
// TODO unit test for the property 'Id'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Name'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void NameTest()
|
||||
{
|
||||
// TODO unit test for the property 'Name'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameterTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
|
||||
//private TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter instance;
|
||||
|
||||
public TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameterTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
|
||||
//instance = new TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameterInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter
|
||||
//Assert.IsType<TestQueryStyleDeepObjectExplodeTrueObjectAllOfQueryObjectParameter>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Size'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void SizeTest()
|
||||
{
|
||||
// TODO unit test for the property 'Size'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Color'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ColorTest()
|
||||
{
|
||||
// TODO unit test for the property 'Color'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Id'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void IdTest()
|
||||
{
|
||||
// TODO unit test for the property 'Id'
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Name'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void NameTest()
|
||||
{
|
||||
// TODO unit test for the property 'Name'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
/*
|
||||
* Echo Server API
|
||||
*
|
||||
* Echo Server API
|
||||
*
|
||||
* The version of the OpenAPI document: 0.1.0
|
||||
* Contact: team@openapitools.org
|
||||
* Generated by: https://github.com/openapitools/openapi-generator.git
|
||||
*/
|
||||
|
||||
|
||||
using Xunit;
|
||||
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using Org.OpenAPITools.Model;
|
||||
using Org.OpenAPITools.Client;
|
||||
using System.Reflection;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Org.OpenAPITools.Test.Model
|
||||
{
|
||||
/// <summary>
|
||||
/// Class for testing TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// This file is automatically generated by OpenAPI Generator (https://openapi-generator.tech).
|
||||
/// Please update the test case below to test the model.
|
||||
/// </remarks>
|
||||
public class TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameterTests : IDisposable
|
||||
{
|
||||
// TODO uncomment below to declare an instance variable for TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter
|
||||
//private TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter instance;
|
||||
|
||||
public TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameterTests()
|
||||
{
|
||||
// TODO uncomment below to create an instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter
|
||||
//instance = new TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter();
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
// Cleanup when everything is done.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test an instance of TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameterInstanceTest()
|
||||
{
|
||||
// TODO uncomment below to test "IsType" TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter
|
||||
//Assert.IsType<TestQueryStyleFormExplodeTrueArrayStringQueryObjectParameter>(instance);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test the property 'Values'
|
||||
/// </summary>
|
||||
[Fact]
|
||||
public void ValuesTest()
|
||||
{
|
||||
// TODO unit test for the property 'Values'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<AssemblyName>Org.OpenAPITools.Test</AssemblyName>
|
||||
<RootNamespace>Org.OpenAPITools.Test</RootNamespace>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<IsPackable>false</IsPackable>
|
||||
<Nullable>annotations</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.3" />
|
||||
<PackageReference Include="xunit" Version="2.5.0" />
|
||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Org.OpenAPITools\Org.OpenAPITools.csproj" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user