mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-19 09:27:09 +00:00
better local variable naming for C#
This commit is contained in:
@@ -46,6 +46,19 @@ namespace IO.Swagger.Test
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Test FindOrdersByStatus
|
||||
/// </summary>
|
||||
[Test]
|
||||
public void FindOrdersByStatusTest()
|
||||
{
|
||||
// TODO: add unit test for the method 'FindOrdersByStatus'
|
||||
string status = null; // TODO: replace null with proper value
|
||||
|
||||
var response = instance.FindOrdersByStatus(status);
|
||||
Assert.IsInstanceOf<List<Order>> (response, "response is List<Order>");
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Test GetInventory
|
||||
/// </summary>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user