-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Python] Add echo_api test object serialization for multipart requests (
#18176) * [python] echo add test object serialization for multipart requests * [echo api] update samples * [echo api] update samples
- Loading branch information
Showing
137 changed files
with
7,427 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 10 additions & 0 deletions
10
...s/client/echo_api/csharp-restsharp/docs/TestFormObjectMultipartRequestMarker.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Org.OpenAPITools.Model.TestFormObjectMultipartRequestMarker | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**Name** | **string** | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
67 changes: 67 additions & 0 deletions
67
...rp-restsharp/src/Org.OpenAPITools.Test/Model/TestFormObjectMultipartRequestMarkerTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
/* | ||
* Echo Server API | ||
* | ||
* Echo Server API | ||
* | ||
* The version of the OpenAPI document: 0.1.0 | ||
* Contact: [email protected] | ||
* 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 TestFormObjectMultipartRequestMarker | ||
/// </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 TestFormObjectMultipartRequestMarkerTests : IDisposable | ||
{ | ||
// TODO uncomment below to declare an instance variable for TestFormObjectMultipartRequestMarker | ||
//private TestFormObjectMultipartRequestMarker instance; | ||
|
||
public TestFormObjectMultipartRequestMarkerTests() | ||
{ | ||
// TODO uncomment below to create an instance of TestFormObjectMultipartRequestMarker | ||
//instance = new TestFormObjectMultipartRequestMarker(); | ||
} | ||
|
||
public void Dispose() | ||
{ | ||
// Cleanup when everything is done. | ||
} | ||
|
||
/// <summary> | ||
/// Test an instance of TestFormObjectMultipartRequestMarker | ||
/// </summary> | ||
[Fact] | ||
public void TestFormObjectMultipartRequestMarkerInstanceTest() | ||
{ | ||
// TODO uncomment below to test "IsType" TestFormObjectMultipartRequestMarker | ||
//Assert.IsType<TestFormObjectMultipartRequestMarker>(instance); | ||
} | ||
|
||
/// <summary> | ||
/// Test the property 'Name' | ||
/// </summary> | ||
[Fact] | ||
public void NameTest() | ||
{ | ||
// TODO unit test for the property 'Name' | ||
} | ||
} | ||
} |
Oops, something went wrong.