[PHP] Add support for server variables in operations (#12982)

* [FEATURE] Support for server variables in operations

* [AUTOGENERATED] update samples

* [PHP] Added tests for server variables in operations
This commit is contained in:
Thomas Hansen
2022-08-03 18:15:51 +02:00
committed by GitHub
parent c9c0b6267f
commit 1e3a39b460
100 changed files with 1732 additions and 2936 deletions

View File

@@ -1,87 +0,0 @@
<?php
/**
* AdditionalPropertiesAnyTypeTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* AdditionalPropertiesAnyTypeTest Class Doc Comment
*
* @category Class
* @description AdditionalPropertiesAnyType
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class AdditionalPropertiesAnyTypeTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "AdditionalPropertiesAnyType"
*/
public function testAdditionalPropertiesAnyType()
{
}
/**
* Test attribute "name"
*/
public function testPropertyName()
{
}
}

View File

@@ -1,87 +0,0 @@
<?php
/**
* AdditionalPropertiesArrayTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* AdditionalPropertiesArrayTest Class Doc Comment
*
* @category Class
* @description AdditionalPropertiesArray
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class AdditionalPropertiesArrayTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "AdditionalPropertiesArray"
*/
public function testAdditionalPropertiesArray()
{
}
/**
* Test attribute "name"
*/
public function testPropertyName()
{
}
}

View File

@@ -1,87 +0,0 @@
<?php
/**
* AdditionalPropertiesBooleanTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* AdditionalPropertiesBooleanTest Class Doc Comment
*
* @category Class
* @description AdditionalPropertiesBoolean
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class AdditionalPropertiesBooleanTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "AdditionalPropertiesBoolean"
*/
public function testAdditionalPropertiesBoolean()
{
}
/**
* Test attribute "name"
*/
public function testPropertyName()
{
}
}

View File

@@ -2,7 +2,7 @@
/**
* AdditionalPropertiesClassTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class AdditionalPropertiesClassTest extends TestCase
*/
public function testAdditionalPropertiesClass()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class AdditionalPropertiesClassTest extends TestCase
*/
public function testPropertyMapProperty()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,5 +93,7 @@ class AdditionalPropertiesClassTest extends TestCase
*/
public function testPropertyMapOfMapProperty()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -1,87 +0,0 @@
<?php
/**
* AdditionalPropertiesIntegerTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* AdditionalPropertiesIntegerTest Class Doc Comment
*
* @category Class
* @description AdditionalPropertiesInteger
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class AdditionalPropertiesIntegerTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "AdditionalPropertiesInteger"
*/
public function testAdditionalPropertiesInteger()
{
}
/**
* Test attribute "name"
*/
public function testPropertyName()
{
}
}

View File

@@ -1,87 +0,0 @@
<?php
/**
* AdditionalPropertiesNumberTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* AdditionalPropertiesNumberTest Class Doc Comment
*
* @category Class
* @description AdditionalPropertiesNumber
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class AdditionalPropertiesNumberTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "AdditionalPropertiesNumber"
*/
public function testAdditionalPropertiesNumber()
{
}
/**
* Test attribute "name"
*/
public function testPropertyName()
{
}
}

View File

@@ -1,87 +0,0 @@
<?php
/**
* AdditionalPropertiesObjectTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* AdditionalPropertiesObjectTest Class Doc Comment
*
* @category Class
* @description AdditionalPropertiesObject
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class AdditionalPropertiesObjectTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "AdditionalPropertiesObject"
*/
public function testAdditionalPropertiesObject()
{
}
/**
* Test attribute "name"
*/
public function testPropertyName()
{
}
}

View File

@@ -1,87 +0,0 @@
<?php
/**
* AdditionalPropertiesStringTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* AdditionalPropertiesStringTest Class Doc Comment
*
* @category Class
* @description AdditionalPropertiesString
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class AdditionalPropertiesStringTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "AdditionalPropertiesString"
*/
public function testAdditionalPropertiesString()
{
}
/**
* Test attribute "name"
*/
public function testPropertyName()
{
}
}

View File

@@ -2,7 +2,7 @@
/**
* AllOfWithSingleRefTest
*
* PHP version 7.3
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -17,7 +17,7 @@
*
* The version of the OpenAPI document: 1.0.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 6.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**

View File

@@ -2,7 +2,7 @@
/**
* AnimalTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class AnimalTest extends TestCase
*/
public function testAnimal()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class AnimalTest extends TestCase
*/
public function testPropertyClassName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,5 +93,7 @@ class AnimalTest extends TestCase
*/
public function testPropertyColor()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ApiResponseTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class ApiResponseTest extends TestCase
*/
public function testApiResponse()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class ApiResponseTest extends TestCase
*/
public function testPropertyCode()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class ApiResponseTest extends TestCase
*/
public function testPropertyType()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,5 +102,7 @@ class ApiResponseTest extends TestCase
*/
public function testPropertyMessage()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ArrayOfArrayOfNumberOnlyTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class ArrayOfArrayOfNumberOnlyTest extends TestCase
*/
public function testArrayOfArrayOfNumberOnly()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class ArrayOfArrayOfNumberOnlyTest extends TestCase
*/
public function testPropertyArrayArrayNumber()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ArrayOfNumberOnlyTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class ArrayOfNumberOnlyTest extends TestCase
*/
public function testArrayOfNumberOnly()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class ArrayOfNumberOnlyTest extends TestCase
*/
public function testPropertyArrayNumber()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ArrayTestTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class ArrayTestTest extends TestCase
*/
public function testArrayTest()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class ArrayTestTest extends TestCase
*/
public function testPropertyArrayOfString()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class ArrayTestTest extends TestCase
*/
public function testPropertyArrayArrayOfInteger()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,5 +102,7 @@ class ArrayTestTest extends TestCase
*/
public function testPropertyArrayArrayOfModel()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -1,87 +0,0 @@
<?php
/**
* BigCatAllOfTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* BigCatAllOfTest Class Doc Comment
*
* @category Class
* @description BigCatAllOf
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class BigCatAllOfTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "BigCatAllOf"
*/
public function testBigCatAllOf()
{
}
/**
* Test attribute "kind"
*/
public function testPropertyKind()
{
}
}

View File

@@ -1,87 +0,0 @@
<?php
/**
* BigCatTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* BigCatTest Class Doc Comment
*
* @category Class
* @description BigCat
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class BigCatTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "BigCat"
*/
public function testBigCat()
{
}
/**
* Test attribute "kind"
*/
public function testPropertyKind()
{
}
}

View File

@@ -2,7 +2,7 @@
/**
* CapitalizationTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class CapitalizationTest extends TestCase
*/
public function testCapitalization()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class CapitalizationTest extends TestCase
*/
public function testPropertySmallCamel()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class CapitalizationTest extends TestCase
*/
public function testPropertyCapitalCamel()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,6 +102,8 @@ class CapitalizationTest extends TestCase
*/
public function testPropertySmallSnake()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -104,6 +111,8 @@ class CapitalizationTest extends TestCase
*/
public function testPropertyCapitalSnake()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -111,6 +120,8 @@ class CapitalizationTest extends TestCase
*/
public function testPropertyScaEthFlowPoints()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -118,5 +129,7 @@ class CapitalizationTest extends TestCase
*/
public function testPropertyAttName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* CatAllOfTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class CatAllOfTest extends TestCase
*/
public function testCatAllOf()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class CatAllOfTest extends TestCase
*/
public function testPropertyDeclawed()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* CatTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class CatTest extends TestCase
*/
public function testCat()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class CatTest extends TestCase
*/
public function testPropertyDeclawed()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* CategoryTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class CategoryTest extends TestCase
*/
public function testCategory()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class CategoryTest extends TestCase
*/
public function testPropertyId()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,5 +93,7 @@ class CategoryTest extends TestCase
*/
public function testPropertyName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ClassModelTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class ClassModelTest extends TestCase
*/
public function testClassModel()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class ClassModelTest extends TestCase
*/
public function testPropertyClass()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ClientTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class ClientTest extends TestCase
*/
public function testClient()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class ClientTest extends TestCase
*/
public function testPropertyClient()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* DeprecatedObjectTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -17,7 +17,7 @@
*
* The version of the OpenAPI document: 1.0.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.2.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**

View File

@@ -2,7 +2,7 @@
/**
* DogAllOfTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class DogAllOfTest extends TestCase
*/
public function testDogAllOf()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class DogAllOfTest extends TestCase
*/
public function testPropertyBreed()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* DogTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class DogTest extends TestCase
*/
public function testDog()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class DogTest extends TestCase
*/
public function testPropertyBreed()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* EnumArraysTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class EnumArraysTest extends TestCase
*/
public function testEnumArrays()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class EnumArraysTest extends TestCase
*/
public function testPropertyJustSymbol()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,5 +93,7 @@ class EnumArraysTest extends TestCase
*/
public function testPropertyArrayEnum()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* EnumClassTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,5 +75,7 @@ class EnumClassTest extends TestCase
*/
public function testEnumClass()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* EnumTestTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class EnumTestTest extends TestCase
*/
public function testEnumTest()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class EnumTestTest extends TestCase
*/
public function testPropertyEnumString()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class EnumTestTest extends TestCase
*/
public function testPropertyEnumStringRequired()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,6 +102,8 @@ class EnumTestTest extends TestCase
*/
public function testPropertyEnumInteger()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -104,6 +111,8 @@ class EnumTestTest extends TestCase
*/
public function testPropertyEnumNumber()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -111,6 +120,8 @@ class EnumTestTest extends TestCase
*/
public function testPropertyOuterEnum()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -118,6 +129,8 @@ class EnumTestTest extends TestCase
*/
public function testPropertyOuterEnumInteger()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -125,6 +138,8 @@ class EnumTestTest extends TestCase
*/
public function testPropertyOuterEnumDefaultValue()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -132,5 +147,7 @@ class EnumTestTest extends TestCase
*/
public function testPropertyOuterEnumIntegerDefaultValue()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* FileSchemaTestClassTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class FileSchemaTestClassTest extends TestCase
*/
public function testFileSchemaTestClass()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class FileSchemaTestClassTest extends TestCase
*/
public function testPropertyFile()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,5 +93,7 @@ class FileSchemaTestClassTest extends TestCase
*/
public function testPropertyFiles()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* FileTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class FileTest extends TestCase
*/
public function testFile()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class FileTest extends TestCase
*/
public function testPropertySourceUri()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* FooGetDefaultResponseTest
*
* PHP version 7.3
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -17,7 +17,7 @@
*
* The version of the OpenAPI document: 1.0.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 6.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**

View File

@@ -2,7 +2,7 @@
/**
* FooTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class FooTest extends TestCase
*/
public function testFoo()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class FooTest extends TestCase
*/
public function testPropertyBar()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* FormatTestTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class FormatTestTest extends TestCase
*/
public function testFormatTest()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyInteger()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyInt32()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,6 +102,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyInt64()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -104,6 +111,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyNumber()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -111,6 +120,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyFloat()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -118,6 +129,17 @@ class FormatTestTest extends TestCase
*/
public function testPropertyDouble()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
* Test attribute "decimal"
*/
public function testPropertyDecimal()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -125,6 +147,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyString()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -132,6 +156,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyByte()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -139,6 +165,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyBinary()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -146,6 +174,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyDate()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -153,6 +183,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyDateTime()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -160,6 +192,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyUuid()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -167,6 +201,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyPassword()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -174,6 +210,8 @@ class FormatTestTest extends TestCase
*/
public function testPropertyPatternWithDigits()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -181,5 +219,7 @@ class FormatTestTest extends TestCase
*/
public function testPropertyPatternWithDigitsAndDelimiter()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* HasOnlyReadOnlyTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class HasOnlyReadOnlyTest extends TestCase
*/
public function testHasOnlyReadOnly()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class HasOnlyReadOnlyTest extends TestCase
*/
public function testPropertyBar()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,5 +93,7 @@ class HasOnlyReadOnlyTest extends TestCase
*/
public function testPropertyFoo()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* HealthCheckResultTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class HealthCheckResultTest extends TestCase
*/
public function testHealthCheckResult()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class HealthCheckResultTest extends TestCase
*/
public function testPropertyNullableMessage()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -1,94 +0,0 @@
<?php
/**
* InlineObject1Test
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* InlineObject1Test Class Doc Comment
*
* @category Class
* @description InlineObject1
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class InlineObject1Test extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "InlineObject1"
*/
public function testInlineObject1()
{
}
/**
* Test attribute "additional_metadata"
*/
public function testPropertyAdditionalMetadata()
{
}
/**
* Test attribute "file"
*/
public function testPropertyFile()
{
}
}

View File

@@ -1,94 +0,0 @@
<?php
/**
* InlineObject2Test
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* InlineObject2Test Class Doc Comment
*
* @category Class
* @description InlineObject2
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class InlineObject2Test extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "InlineObject2"
*/
public function testInlineObject2()
{
}
/**
* Test attribute "enum_form_string_array"
*/
public function testPropertyEnumFormStringArray()
{
}
/**
* Test attribute "enum_form_string"
*/
public function testPropertyEnumFormString()
{
}
}

View File

@@ -1,178 +0,0 @@
<?php
/**
* InlineObject3Test
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* InlineObject3Test Class Doc Comment
*
* @category Class
* @description InlineObject3
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class InlineObject3Test extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "InlineObject3"
*/
public function testInlineObject3()
{
}
/**
* Test attribute "integer"
*/
public function testPropertyInteger()
{
}
/**
* Test attribute "int32"
*/
public function testPropertyInt32()
{
}
/**
* Test attribute "int64"
*/
public function testPropertyInt64()
{
}
/**
* Test attribute "number"
*/
public function testPropertyNumber()
{
}
/**
* Test attribute "float"
*/
public function testPropertyFloat()
{
}
/**
* Test attribute "double"
*/
public function testPropertyDouble()
{
}
/**
* Test attribute "string"
*/
public function testPropertyString()
{
}
/**
* Test attribute "pattern_without_delimiter"
*/
public function testPropertyPatternWithoutDelimiter()
{
}
/**
* Test attribute "byte"
*/
public function testPropertyByte()
{
}
/**
* Test attribute "binary"
*/
public function testPropertyBinary()
{
}
/**
* Test attribute "date"
*/
public function testPropertyDate()
{
}
/**
* Test attribute "date_time"
*/
public function testPropertyDateTime()
{
}
/**
* Test attribute "password"
*/
public function testPropertyPassword()
{
}
/**
* Test attribute "callback"
*/
public function testPropertyCallback()
{
}
}

View File

@@ -1,94 +0,0 @@
<?php
/**
* InlineObject4Test
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* InlineObject4Test Class Doc Comment
*
* @category Class
* @description InlineObject4
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class InlineObject4Test extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "InlineObject4"
*/
public function testInlineObject4()
{
}
/**
* Test attribute "param"
*/
public function testPropertyParam()
{
}
/**
* Test attribute "param2"
*/
public function testPropertyParam2()
{
}
}

View File

@@ -1,94 +0,0 @@
<?php
/**
* InlineObject5Test
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* InlineObject5Test Class Doc Comment
*
* @category Class
* @description InlineObject5
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class InlineObject5Test extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "InlineObject5"
*/
public function testInlineObject5()
{
}
/**
* Test attribute "additional_metadata"
*/
public function testPropertyAdditionalMetadata()
{
}
/**
* Test attribute "required_file"
*/
public function testPropertyRequiredFile()
{
}
}

View File

@@ -1,94 +0,0 @@
<?php
/**
* InlineObjectTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* InlineObjectTest Class Doc Comment
*
* @category Class
* @description InlineObject
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class InlineObjectTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "InlineObject"
*/
public function testInlineObject()
{
}
/**
* Test attribute "name"
*/
public function testPropertyName()
{
}
/**
* Test attribute "status"
*/
public function testPropertyStatus()
{
}
}

View File

@@ -1,87 +0,0 @@
<?php
/**
* InlineResponseDefaultTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* InlineResponseDefaultTest Class Doc Comment
*
* @category Class
* @description InlineResponseDefault
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class InlineResponseDefaultTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "InlineResponseDefault"
*/
public function testInlineResponseDefault()
{
}
/**
* Test attribute "string"
*/
public function testPropertyString()
{
}
}

View File

@@ -2,7 +2,7 @@
/**
* MapTestTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class MapTestTest extends TestCase
*/
public function testMapTest()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class MapTestTest extends TestCase
*/
public function testPropertyMapMapOfString()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class MapTestTest extends TestCase
*/
public function testPropertyMapOfEnumString()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,6 +102,8 @@ class MapTestTest extends TestCase
*/
public function testPropertyDirectMap()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -104,5 +111,7 @@ class MapTestTest extends TestCase
*/
public function testPropertyIndirectMap()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* MixedPropertiesAndAdditionalPropertiesClassTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class MixedPropertiesAndAdditionalPropertiesClassTest extends TestCase
*/
public function testMixedPropertiesAndAdditionalPropertiesClass()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class MixedPropertiesAndAdditionalPropertiesClassTest extends TestCase
*/
public function testPropertyUuid()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class MixedPropertiesAndAdditionalPropertiesClassTest extends TestCase
*/
public function testPropertyDateTime()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,5 +102,7 @@ class MixedPropertiesAndAdditionalPropertiesClassTest extends TestCase
*/
public function testPropertyMap()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* Model200ResponseTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class Model200ResponseTest extends TestCase
*/
public function testModel200Response()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class Model200ResponseTest extends TestCase
*/
public function testPropertyName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,5 +93,7 @@ class Model200ResponseTest extends TestCase
*/
public function testPropertyClass()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ModelListTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class ModelListTest extends TestCase
*/
public function testModelList()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class ModelListTest extends TestCase
*/
public function testProperty123List()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ModelReturnTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class ModelReturnTest extends TestCase
*/
public function testModelReturn()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class ModelReturnTest extends TestCase
*/
public function testPropertyReturn()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* NameTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class NameTest extends TestCase
*/
public function testName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class NameTest extends TestCase
*/
public function testPropertyName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class NameTest extends TestCase
*/
public function testPropertySnakeCase()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,6 +102,8 @@ class NameTest extends TestCase
*/
public function testPropertyProperty()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -104,5 +111,7 @@ class NameTest extends TestCase
*/
public function testProperty123Number()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* NullableClassTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class NullableClassTest extends TestCase
*/
public function testNullableClass()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyIntegerProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyNumberProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,6 +102,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyBooleanProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -104,6 +111,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyStringProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -111,6 +120,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyDateProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -118,6 +129,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyDatetimeProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -125,6 +138,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyArrayNullableProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -132,6 +147,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyArrayAndItemsNullableProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -139,6 +156,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyArrayItemsNullable()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -146,6 +165,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyObjectNullableProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -153,6 +174,8 @@ class NullableClassTest extends TestCase
*/
public function testPropertyObjectAndItemsNullableProp()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -160,5 +183,7 @@ class NullableClassTest extends TestCase
*/
public function testPropertyObjectItemsNullable()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* NumberOnlyTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class NumberOnlyTest extends TestCase
*/
public function testNumberOnly()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class NumberOnlyTest extends TestCase
*/
public function testPropertyJustNumber()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ObjectWithDeprecatedFieldsTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -17,7 +17,7 @@
*
* The version of the OpenAPI document: 1.0.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.2.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**

View File

@@ -2,7 +2,7 @@
/**
* OrderTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class OrderTest extends TestCase
*/
public function testOrder()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class OrderTest extends TestCase
*/
public function testPropertyId()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class OrderTest extends TestCase
*/
public function testPropertyPetId()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,6 +102,8 @@ class OrderTest extends TestCase
*/
public function testPropertyQuantity()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -104,6 +111,8 @@ class OrderTest extends TestCase
*/
public function testPropertyShipDate()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -111,6 +120,8 @@ class OrderTest extends TestCase
*/
public function testPropertyStatus()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -118,5 +129,7 @@ class OrderTest extends TestCase
*/
public function testPropertyComplete()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* OuterCompositeTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class OuterCompositeTest extends TestCase
*/
public function testOuterComposite()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class OuterCompositeTest extends TestCase
*/
public function testPropertyMyNumber()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class OuterCompositeTest extends TestCase
*/
public function testPropertyMyString()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,5 +102,7 @@ class OuterCompositeTest extends TestCase
*/
public function testPropertyMyBoolean()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* OuterEnumDefaultValueTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,5 +75,7 @@ class OuterEnumDefaultValueTest extends TestCase
*/
public function testOuterEnumDefaultValue()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* OuterEnumIntegerDefaultValueTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,5 +75,7 @@ class OuterEnumIntegerDefaultValueTest extends TestCase
*/
public function testOuterEnumIntegerDefaultValue()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* OuterEnumIntegerTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,5 +75,7 @@ class OuterEnumIntegerTest extends TestCase
*/
public function testOuterEnumInteger()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* OuterEnumTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,5 +75,7 @@ class OuterEnumTest extends TestCase
*/
public function testOuterEnum()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* OuterObjectWithEnumPropertyTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.1.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**

View File

@@ -2,7 +2,7 @@
/**
* PetTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class PetTest extends TestCase
*/
public function testPet()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class PetTest extends TestCase
*/
public function testPropertyId()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class PetTest extends TestCase
*/
public function testPropertyCategory()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,6 +102,8 @@ class PetTest extends TestCase
*/
public function testPropertyName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -104,6 +111,8 @@ class PetTest extends TestCase
*/
public function testPropertyPhotoUrls()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -111,6 +120,8 @@ class PetTest extends TestCase
*/
public function testPropertyTags()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -118,5 +129,7 @@ class PetTest extends TestCase
*/
public function testPropertyStatus()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* ReadOnlyFirstTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class ReadOnlyFirstTest extends TestCase
*/
public function testReadOnlyFirst()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class ReadOnlyFirstTest extends TestCase
*/
public function testPropertyBar()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,5 +93,7 @@ class ReadOnlyFirstTest extends TestCase
*/
public function testPropertyBaz()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* SingleRefTypeTest
*
* PHP version 7.3
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -17,7 +17,7 @@
*
* The version of the OpenAPI document: 1.0.0
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 6.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**

View File

@@ -2,7 +2,7 @@
/**
* SpecialModelNameTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class SpecialModelNameTest extends TestCase
*/
public function testSpecialModelName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,5 +84,7 @@ class SpecialModelNameTest extends TestCase
*/
public function testPropertySpecialPropertyName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -2,7 +2,7 @@
/**
* TagTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class TagTest extends TestCase
*/
public function testTag()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class TagTest extends TestCase
*/
public function testPropertyId()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,5 +93,7 @@ class TagTest extends TestCase
*/
public function testPropertyName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -1,115 +0,0 @@
<?php
/**
* TypeHolderDefaultTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* TypeHolderDefaultTest Class Doc Comment
*
* @category Class
* @description TypeHolderDefault
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class TypeHolderDefaultTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "TypeHolderDefault"
*/
public function testTypeHolderDefault()
{
}
/**
* Test attribute "string_item"
*/
public function testPropertyStringItem()
{
}
/**
* Test attribute "number_item"
*/
public function testPropertyNumberItem()
{
}
/**
* Test attribute "integer_item"
*/
public function testPropertyIntegerItem()
{
}
/**
* Test attribute "bool_item"
*/
public function testPropertyBoolItem()
{
}
/**
* Test attribute "array_item"
*/
public function testPropertyArrayItem()
{
}
}

View File

@@ -1,122 +0,0 @@
<?php
/**
* TypeHolderExampleTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* TypeHolderExampleTest Class Doc Comment
*
* @category Class
* @description TypeHolderExample
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class TypeHolderExampleTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "TypeHolderExample"
*/
public function testTypeHolderExample()
{
}
/**
* Test attribute "string_item"
*/
public function testPropertyStringItem()
{
}
/**
* Test attribute "number_item"
*/
public function testPropertyNumberItem()
{
}
/**
* Test attribute "float_item"
*/
public function testPropertyFloatItem()
{
}
/**
* Test attribute "integer_item"
*/
public function testPropertyIntegerItem()
{
}
/**
* Test attribute "bool_item"
*/
public function testPropertyBoolItem()
{
}
/**
* Test attribute "array_item"
*/
public function testPropertyArrayItem()
{
}
}

View File

@@ -2,7 +2,7 @@
/**
* UserTest
*
* PHP version 7.2
* PHP version 7.4
*
* @category Class
* @package OpenAPI\Client
@@ -16,9 +16,8 @@
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
* OpenAPI Generator version: 6.1.0-SNAPSHOT
*/
/**
@@ -27,7 +26,7 @@
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
namespace OpenAPI\Client\Test\Model;
use PHPUnit\Framework\TestCase;
@@ -76,6 +75,8 @@ class UserTest extends TestCase
*/
public function testUser()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -83,6 +84,8 @@ class UserTest extends TestCase
*/
public function testPropertyId()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -90,6 +93,8 @@ class UserTest extends TestCase
*/
public function testPropertyUsername()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -97,6 +102,8 @@ class UserTest extends TestCase
*/
public function testPropertyFirstName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -104,6 +111,8 @@ class UserTest extends TestCase
*/
public function testPropertyLastName()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -111,6 +120,8 @@ class UserTest extends TestCase
*/
public function testPropertyEmail()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -118,6 +129,8 @@ class UserTest extends TestCase
*/
public function testPropertyPassword()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -125,6 +138,8 @@ class UserTest extends TestCase
*/
public function testPropertyPhone()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
/**
@@ -132,5 +147,7 @@ class UserTest extends TestCase
*/
public function testPropertyUserStatus()
{
// TODO: implement
$this->markTestIncomplete('Not implemented');
}
}

View File

@@ -1,283 +0,0 @@
<?php
/**
* XmlItemTest
*
* PHP version 7.2
*
* @category Class
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
/**
* OpenAPI Petstore
*
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* The version of the OpenAPI document: 1.0.0
*
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 5.0.0-SNAPSHOT
*/
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Please update the test case below to test the model.
*/
namespace OpenAPI\Client;
use PHPUnit\Framework\TestCase;
/**
* XmlItemTest Class Doc Comment
*
* @category Class
* @description XmlItem
* @package OpenAPI\Client
* @author OpenAPI Generator team
* @link https://openapi-generator.tech
*/
class XmlItemTest extends TestCase
{
/**
* Setup before running any test case
*/
public static function setUpBeforeClass(): void
{
}
/**
* Setup before running each test case
*/
public function setUp(): void
{
}
/**
* Clean up after running each test case
*/
public function tearDown(): void
{
}
/**
* Clean up after running all test cases
*/
public static function tearDownAfterClass(): void
{
}
/**
* Test "XmlItem"
*/
public function testXmlItem()
{
}
/**
* Test attribute "attribute_string"
*/
public function testPropertyAttributeString()
{
}
/**
* Test attribute "attribute_number"
*/
public function testPropertyAttributeNumber()
{
}
/**
* Test attribute "attribute_integer"
*/
public function testPropertyAttributeInteger()
{
}
/**
* Test attribute "attribute_boolean"
*/
public function testPropertyAttributeBoolean()
{
}
/**
* Test attribute "wrapped_array"
*/
public function testPropertyWrappedArray()
{
}
/**
* Test attribute "name_string"
*/
public function testPropertyNameString()
{
}
/**
* Test attribute "name_number"
*/
public function testPropertyNameNumber()
{
}
/**
* Test attribute "name_integer"
*/
public function testPropertyNameInteger()
{
}
/**
* Test attribute "name_boolean"
*/
public function testPropertyNameBoolean()
{
}
/**
* Test attribute "name_array"
*/
public function testPropertyNameArray()
{
}
/**
* Test attribute "name_wrapped_array"
*/
public function testPropertyNameWrappedArray()
{
}
/**
* Test attribute "prefix_string"
*/
public function testPropertyPrefixString()
{
}
/**
* Test attribute "prefix_number"
*/
public function testPropertyPrefixNumber()
{
}
/**
* Test attribute "prefix_integer"
*/
public function testPropertyPrefixInteger()
{
}
/**
* Test attribute "prefix_boolean"
*/
public function testPropertyPrefixBoolean()
{
}
/**
* Test attribute "prefix_array"
*/
public function testPropertyPrefixArray()
{
}
/**
* Test attribute "prefix_wrapped_array"
*/
public function testPropertyPrefixWrappedArray()
{
}
/**
* Test attribute "namespace_string"
*/
public function testPropertyNamespaceString()
{
}
/**
* Test attribute "namespace_number"
*/
public function testPropertyNamespaceNumber()
{
}
/**
* Test attribute "namespace_integer"
*/
public function testPropertyNamespaceInteger()
{
}
/**
* Test attribute "namespace_boolean"
*/
public function testPropertyNamespaceBoolean()
{
}
/**
* Test attribute "namespace_array"
*/
public function testPropertyNamespaceArray()
{
}
/**
* Test attribute "namespace_wrapped_array"
*/
public function testPropertyNamespaceWrappedArray()
{
}
/**
* Test attribute "prefix_ns_string"
*/
public function testPropertyPrefixNsString()
{
}
/**
* Test attribute "prefix_ns_number"
*/
public function testPropertyPrefixNsNumber()
{
}
/**
* Test attribute "prefix_ns_integer"
*/
public function testPropertyPrefixNsInteger()
{
}
/**
* Test attribute "prefix_ns_boolean"
*/
public function testPropertyPrefixNsBoolean()
{
}
/**
* Test attribute "prefix_ns_array"
*/
public function testPropertyPrefixNsArray()
{
}
/**
* Test attribute "prefix_ns_wrapped_array"
*/
public function testPropertyPrefixNsWrappedArray()
{
}
}