-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Se agrega funcionalidad y test de la consulta del total de depositant…
…es por suscripcion
- Loading branch information
Showing
5 changed files
with
437 additions
and
9 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
79 changes: 79 additions & 0 deletions
79
sdk-client/src/MX.Wire4.Test/Model/DepositantCountResponseTests.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,79 @@ | ||
/* | ||
* Wire4RestAPI | ||
* | ||
* Referencia de la API de Wire4 | ||
* | ||
* OpenAPI spec version: 1.0.0 | ||
* | ||
* Generated by: https://github.com/swagger-api/swagger-codegen.git | ||
*/ | ||
|
||
using NUnit.Framework; | ||
|
||
using System; | ||
using System.Linq; | ||
using System.IO; | ||
using System.Collections.Generic; | ||
using MX.Wire4.Api; | ||
using MX.Wire4.Model; | ||
using MX.Wire4.Client; | ||
using System.Reflection; | ||
using Newtonsoft.Json; | ||
|
||
namespace MX.Wire4.Test | ||
{ | ||
/// <summary> | ||
/// Class for testing DepositantCountResponse | ||
/// </summary> | ||
/// <remarks> | ||
/// This file is automatically generated by Swagger Codegen. | ||
/// Please update the test case below to test the model. | ||
/// </remarks> | ||
[TestFixture] | ||
public class DepositantCountResponseTests | ||
{ | ||
// TODO uncomment below to declare an instance variable for DepositantCountResponse | ||
//private DepositantCountResponse instance; | ||
|
||
/// <summary> | ||
/// Setup before each test | ||
/// </summary> | ||
[SetUp] | ||
public void Init() | ||
{ | ||
// TODO uncomment below to create an instance of DepositantCountResponse | ||
//instance = new DepositantCountResponse(); | ||
} | ||
|
||
/// <summary> | ||
/// Clean up after each test | ||
/// </summary> | ||
[TearDown] | ||
public void Cleanup() | ||
{ | ||
|
||
} | ||
|
||
/// <summary> | ||
/// Test an instance of DepositantCountResponse | ||
/// </summary> | ||
[Test] | ||
public void DepositantCountResponseInstanceTest() | ||
{ | ||
// TODO uncomment below to test "IsInstanceOfType" DepositantCountResponse | ||
//Assert.IsInstanceOfType<DepositantCountResponse> (instance, "variable 'instance' is a DepositantCountResponse"); | ||
} | ||
|
||
|
||
/// <summary> | ||
/// Test the property 'Total' | ||
/// </summary> | ||
[Test] | ||
public void TotalTest() | ||
{ | ||
// TODO unit test for the property 'Total' | ||
} | ||
|
||
} | ||
|
||
} |
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
Oops, something went wrong.