forked from loafle/openapi-generator-original
193 lines
4.0 KiB
PHP
193 lines
4.0 KiB
PHP
<?php
|
|
/**
|
|
* BodyApiTest
|
|
* 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 endpoint.
|
|
*/
|
|
|
|
namespace OpenAPI\Client\Test\Api;
|
|
|
|
use OpenAPI\Client\Configuration;
|
|
use OpenAPI\Client\ApiException;
|
|
use OpenAPI\Client\ObjectSerializer;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* BodyApiTest Class Doc Comment
|
|
*
|
|
* @package OpenAPI\Client
|
|
* @author OpenAPI Generator team
|
|
* @link https://openapi-generator.tech
|
|
*/
|
|
class BodyApiTest extends TestCase
|
|
{
|
|
|
|
/**
|
|
* Setup before running any test cases
|
|
*/
|
|
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 case for testBinaryGif
|
|
*
|
|
* Test binary (gif) response body.
|
|
*
|
|
*/
|
|
public function testTestBinaryGif()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for testBodyApplicationOctetstreamBinary
|
|
*
|
|
* Test body parameter(s).
|
|
*
|
|
*/
|
|
public function testTestBodyApplicationOctetstreamBinary()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for testBodyMultipartFormdataArrayOfBinary
|
|
*
|
|
* Test array of binary in multipart mime.
|
|
*
|
|
*/
|
|
public function testTestBodyMultipartFormdataArrayOfBinary()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for testBodyMultipartFormdataSingleBinary
|
|
*
|
|
* Test single binary in multipart mime.
|
|
*
|
|
*/
|
|
public function testTestBodyMultipartFormdataSingleBinary()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for testEchoBodyAllOfPet
|
|
*
|
|
* Test body parameter(s).
|
|
*
|
|
*/
|
|
public function testTestEchoBodyAllOfPet()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for testEchoBodyFreeFormObjectResponseString
|
|
*
|
|
* Test free form object.
|
|
*
|
|
*/
|
|
public function testTestEchoBodyFreeFormObjectResponseString()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for testEchoBodyPet
|
|
*
|
|
* Test body parameter(s).
|
|
*
|
|
*/
|
|
public function testTestEchoBodyPet()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for testEchoBodyPetResponseString
|
|
*
|
|
* Test empty response body.
|
|
*
|
|
*/
|
|
public function testTestEchoBodyPetResponseString()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for testEchoBodyStringEnum
|
|
*
|
|
* Test string enum response body.
|
|
*
|
|
*/
|
|
public function testTestEchoBodyStringEnum()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
|
|
/**
|
|
* Test case for testEchoBodyTagResponseString
|
|
*
|
|
* Test empty json (request body).
|
|
*
|
|
*/
|
|
public function testTestEchoBodyTagResponseString()
|
|
{
|
|
// TODO: implement
|
|
self::markTestIncomplete('Not implemented');
|
|
}
|
|
}
|