ProductListTest.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?php
  2. /**
  3. * ProductListTest
  4. *
  5. * PHP version 5
  6. *
  7. * @category Class
  8. * @package Billingo\Client
  9. * @author Swagger Codegen team
  10. * @link https://github.com/swagger-api/swagger-codegen
  11. */
  12. /**
  13. * Billingo API v3
  14. *
  15. * 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.
  16. *
  17. * OpenAPI spec version: 3.0.10
  18. * Contact: hello@billingo.hu
  19. * Generated by: https://github.com/swagger-api/swagger-codegen.git
  20. * Swagger Codegen version: 3.0.23
  21. */
  22. /**
  23. * NOTE: This class is auto generated by the swagger code generator program.
  24. * https://github.com/swagger-api/swagger-codegen
  25. * Please update the test case below to test the model.
  26. */
  27. namespace Billingo\Client;
  28. /**
  29. * ProductListTest Class Doc Comment
  30. *
  31. * @category Class
  32. * @description A object with a data property that contains an array of up to limit products. Each entry in the array is a separate product object. If no more products are available, the resulting array will be empty.
  33. * @package Billingo\Client
  34. * @author Swagger Codegen team
  35. * @link https://github.com/swagger-api/swagger-codegen
  36. */
  37. class ProductListTest extends \PHPUnit_Framework_TestCase
  38. {
  39. /**
  40. * Setup before running any test case
  41. */
  42. public static function setUpBeforeClass()
  43. {
  44. }
  45. /**
  46. * Setup before running each test case
  47. */
  48. public function setUp()
  49. {
  50. }
  51. /**
  52. * Clean up after running each test case
  53. */
  54. public function tearDown()
  55. {
  56. }
  57. /**
  58. * Clean up after running all test cases
  59. */
  60. public static function tearDownAfterClass()
  61. {
  62. }
  63. /**
  64. * Test "ProductList"
  65. */
  66. public function testProductList()
  67. {
  68. }
  69. /**
  70. * Test attribute "data"
  71. */
  72. public function testPropertyData()
  73. {
  74. }
  75. /**
  76. * Test attribute "total"
  77. */
  78. public function testPropertyTotal()
  79. {
  80. }
  81. /**
  82. * Test attribute "per_page"
  83. */
  84. public function testPropertyPerPage()
  85. {
  86. }
  87. /**
  88. * Test attribute "current_page"
  89. */
  90. public function testPropertyCurrentPage()
  91. {
  92. }
  93. /**
  94. * Test attribute "last_page"
  95. */
  96. public function testPropertyLastPage()
  97. {
  98. }
  99. /**
  100. * Test attribute "prev_page_url"
  101. */
  102. public function testPropertyPrevPageUrl()
  103. {
  104. }
  105. /**
  106. * Test attribute "next_page_url"
  107. */
  108. public function testPropertyNextPageUrl()
  109. {
  110. }
  111. }