PartnerApiTest.php 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. <?php
  2. /**
  3. * PartnerApiTest
  4. * PHP version 5
  5. *
  6. * @category Class
  7. * @package Billingo\Client
  8. * @author Swagger Codegen team
  9. * @link https://github.com/swagger-api/swagger-codegen
  10. */
  11. /**
  12. * Billingo API v3
  13. *
  14. * This is a Billingo API v3 documentation. Our API based on REST software architectural style. API has resource-oriented URLs, accepts JSON-encoded request bodies and returns JSON-encoded responses. To use this API you have to generate a new API key on our [site](https://app.billingo.hu/api-key). After that, you can test your API key on this page.
  15. *
  16. * OpenAPI spec version: 3.0.10
  17. * Contact: hello@billingo.hu
  18. * Generated by: https://github.com/swagger-api/swagger-codegen.git
  19. * Swagger Codegen version: 3.0.23
  20. */
  21. /**
  22. * NOTE: This class is auto generated by the swagger code generator program.
  23. * https://github.com/swagger-api/swagger-codegen
  24. * Please update the test case below to test the endpoint.
  25. */
  26. namespace Billingo\Client;
  27. use Billingo\Client\Configuration;
  28. use Billingo\Client\ApiException;
  29. use Billingo\Client\ObjectSerializer;
  30. /**
  31. * PartnerApiTest Class Doc Comment
  32. *
  33. * @category Class
  34. * @package Billingo\Client
  35. * @author Swagger Codegen team
  36. * @link https://github.com/swagger-api/swagger-codegen
  37. */
  38. class PartnerApiTest extends \PHPUnit_Framework_TestCase
  39. {
  40. /**
  41. * Setup before running any test cases
  42. */
  43. public static function setUpBeforeClass()
  44. {
  45. }
  46. /**
  47. * Setup before running each test case
  48. */
  49. public function setUp()
  50. {
  51. }
  52. /**
  53. * Clean up after running each test case
  54. */
  55. public function tearDown()
  56. {
  57. }
  58. /**
  59. * Clean up after running all test cases
  60. */
  61. public static function tearDownAfterClass()
  62. {
  63. }
  64. /**
  65. * Test case for createPartner
  66. *
  67. * Create a partner.
  68. *
  69. */
  70. public function testCreatePartner()
  71. {
  72. }
  73. /**
  74. * Test case for deletePartner
  75. *
  76. * Delete a partner.
  77. *
  78. */
  79. public function testDeletePartner()
  80. {
  81. }
  82. /**
  83. * Test case for getPartner
  84. *
  85. * Retrieve a partner.
  86. *
  87. */
  88. public function testGetPartner()
  89. {
  90. }
  91. /**
  92. * Test case for listPartner
  93. *
  94. * List all partners.
  95. *
  96. */
  97. public function testListPartner()
  98. {
  99. }
  100. /**
  101. * Test case for updatePartner
  102. *
  103. * Update a partner.
  104. *
  105. */
  106. public function testUpdatePartner()
  107. {
  108. }
  109. }