forked from loafle/openapi-generator-original
153 lines
3.2 KiB
PHP
153 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* DefaultValueTest
|
|
*
|
|
* PHP version 8.1
|
|
*
|
|
* @package OpenAPI\Client
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
*/
|
|
|
|
/**
|
|
* Echo Server API
|
|
*
|
|
* Echo Server API
|
|
*
|
|
* The version of the OpenAPI document: 0.1.0
|
|
* Contact: team@openapitools.org
|
|
* @generated Generated by: https://openapi-generator.tech
|
|
* Generator version: 7.8.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\Test\Model;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* DefaultValueTest Class Doc Comment
|
|
*
|
|
* @description to test the default value of properties
|
|
* @package OpenAPI\Client
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
*/
|
|
class DefaultValueTest 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 "DefaultValue"
|
|
*/
|
|
public function testDefaultValue()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test attribute "array_string_enum_ref_default"
|
|
*/
|
|
public function testPropertyArrayStringEnumRefDefault()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test attribute "array_string_enum_default"
|
|
*/
|
|
public function testPropertyArrayStringEnumDefault()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test attribute "array_string_default"
|
|
*/
|
|
public function testPropertyArrayStringDefault()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test attribute "array_integer_default"
|
|
*/
|
|
public function testPropertyArrayIntegerDefault()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test attribute "array_string"
|
|
*/
|
|
public function testPropertyArrayString()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test attribute "array_string_nullable"
|
|
*/
|
|
public function testPropertyArrayStringNullable()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test attribute "array_string_extension_nullable"
|
|
*/
|
|
public function testPropertyArrayStringExtensionNullable()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test attribute "string_nullable"
|
|
*/
|
|
public function testPropertyStringNullable()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
}
|