Switches python-experimental in as the primary python client (#13501)

* Changes python to python-prior

* python -> python-prior, python-experimental->python

* Renames sample spec directories

* Samples regnerated

* Regenerates docs

* Fixes test

* Samples regenerated

* Updates renerators list

* Fixes made to python paths in pom.xml

* Fixes node4 sh file paths
This commit is contained in:
Justin Black
2022-09-24 01:19:38 -07:00
committed by GitHub
parent 9d621342e0
commit 7e73645303
3628 changed files with 49326 additions and 45313 deletions

View File

@@ -1,37 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.api.another_fake_api import AnotherFakeApi # noqa: E501
class TestAnotherFakeApi(unittest.TestCase):
"""AnotherFakeApi unit test stubs"""
def setUp(self):
self.api = AnotherFakeApi() # noqa: E501
def tearDown(self):
pass
def test_call_123_test_special_tags(self):
"""Test case for call_123_test_special_tags
To test special tags # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,43 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.address import Address
from petstore_api.model.animal import Animal
from petstore_api.model.cat_all_of import CatAllOf
globals()['Address'] = Address
globals()['Animal'] = Animal
globals()['CatAllOf'] = CatAllOf
from petstore_api.model.cat import Cat
class TestCat(unittest.TestCase):
"""Cat unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testCat(self):
"""Test Cat"""
# FIXME: construct object with mandatory attributes with example values
# model = Cat() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,37 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.cat_all_of import CatAllOf
class TestCatAllOf(unittest.TestCase):
"""CatAllOf unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testCatAllOf(self):
"""Test CatAllOf"""
# FIXME: construct object with mandatory attributes with example values
# model = CatAllOf() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,37 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.child_cat_all_of import ChildCatAllOf
class TestChildCatAllOf(unittest.TestCase):
"""ChildCatAllOf unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testChildCatAllOf(self):
"""Test ChildCatAllOf"""
# FIXME: construct object with mandatory attributes with example values
# model = ChildCatAllOf() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,41 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.quadrilateral_interface import QuadrilateralInterface
from petstore_api.model.shape_interface import ShapeInterface
globals()['QuadrilateralInterface'] = QuadrilateralInterface
globals()['ShapeInterface'] = ShapeInterface
from petstore_api.model.complex_quadrilateral import ComplexQuadrilateral
class TestComplexQuadrilateral(unittest.TestCase):
"""ComplexQuadrilateral unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testComplexQuadrilateral(self):
"""Test ComplexQuadrilateral"""
# FIXME: construct object with mandatory attributes with example values
# model = ComplexQuadrilateral() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,41 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.animal import Animal
from petstore_api.model.number_with_validations import NumberWithValidations
globals()['Animal'] = Animal
globals()['NumberWithValidations'] = NumberWithValidations
from petstore_api.model.composed_one_of_number_with_validations import ComposedOneOfNumberWithValidations
class TestComposedOneOfNumberWithValidations(unittest.TestCase):
"""ComposedOneOfNumberWithValidations unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testComposedOneOfNumberWithValidations(self):
"""Test ComposedOneOfNumberWithValidations"""
# FIXME: construct object with mandatory attributes with example values
# model = ComposedOneOfNumberWithValidations() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,37 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.tag import Tag
globals()['Tag'] = Tag
from petstore_api.model.composed_schema_with_props_and_no_add_props import ComposedSchemaWithPropsAndNoAddProps
class TestComposedSchemaWithPropsAndNoAddProps(unittest.TestCase):
"""ComposedSchemaWithPropsAndNoAddProps unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testComposedSchemaWithPropsAndNoAddProps(self):
"""Test ComposedSchemaWithPropsAndNoAddProps"""
# FIXME: construct object with mandatory attributes with example values
# model = ComposedSchemaWithPropsAndNoAddProps() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,37 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.dog_all_of import DogAllOf
class TestDogAllOf(unittest.TestCase):
"""DogAllOf unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testDogAllOf(self):
"""Test DogAllOf"""
# FIXME: construct object with mandatory attributes with example values
# model = DogAllOf() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,45 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.fruit import Fruit
from petstore_api.model.nullable_shape import NullableShape
from petstore_api.model.shape import Shape
from petstore_api.model.shape_or_null import ShapeOrNull
globals()['Fruit'] = Fruit
globals()['NullableShape'] = NullableShape
globals()['Shape'] = Shape
globals()['ShapeOrNull'] = ShapeOrNull
from petstore_api.model.drawing import Drawing
class TestDrawing(unittest.TestCase):
"""Drawing unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testDrawing(self):
"""Test Drawing"""
# FIXME: construct object with mandatory attributes with example values
# model = Drawing() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,35 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.egress_threshold_options import EgressThresholdOptions
class TestEgressThresholdOptions(unittest.TestCase):
"""EgressThresholdOptions unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testEgressThresholdOptions(self):
"""Test EgressThresholdOptions"""
# FIXME: construct object with mandatory attributes with example values
# model = EgressThresholdOptions() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,47 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.integer_enum import IntegerEnum
from petstore_api.model.integer_enum_one_value import IntegerEnumOneValue
from petstore_api.model.integer_enum_with_default_value import IntegerEnumWithDefaultValue
from petstore_api.model.string_enum import StringEnum
from petstore_api.model.string_enum_with_default_value import StringEnumWithDefaultValue
globals()['IntegerEnum'] = IntegerEnum
globals()['IntegerEnumOneValue'] = IntegerEnumOneValue
globals()['IntegerEnumWithDefaultValue'] = IntegerEnumWithDefaultValue
globals()['StringEnum'] = StringEnum
globals()['StringEnumWithDefaultValue'] = StringEnumWithDefaultValue
from petstore_api.model.enum_test import EnumTest
class TestEnumTest(unittest.TestCase):
"""EnumTest unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testEnumTest(self):
"""Test EnumTest"""
# FIXME: construct object with mandatory attributes with example values
# model = EnumTest() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,41 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.shape_interface import ShapeInterface
from petstore_api.model.triangle_interface import TriangleInterface
globals()['ShapeInterface'] = ShapeInterface
globals()['TriangleInterface'] = TriangleInterface
from petstore_api.model.equilateral_triangle import EquilateralTriangle
class TestEquilateralTriangle(unittest.TestCase):
"""EquilateralTriangle unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testEquilateralTriangle(self):
"""Test EquilateralTriangle"""
# FIXME: construct object with mandatory attributes with example values
# model = EquilateralTriangle() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,210 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.api.fake_api import FakeApi # noqa: E501
class TestFakeApi(unittest.TestCase):
"""FakeApi unit test stubs"""
def setUp(self):
self.api = FakeApi() # noqa: E501
def tearDown(self):
pass
def test_additional_properties_with_array_of_enums(self):
"""Test case for additional_properties_with_array_of_enums
Additional Properties with Array of Enums # noqa: E501
"""
pass
def test_array_model(self):
"""Test case for array_model
"""
pass
def test_array_of_enums(self):
"""Test case for array_of_enums
Array of Enums # noqa: E501
"""
pass
def test_boolean(self):
"""Test case for boolean
"""
pass
def test_composed_one_of_number_with_validations(self):
"""Test case for composed_one_of_number_with_validations
"""
pass
def test_download_attachment(self):
"""Test case for download_attachment
downloads a file using Content-Disposition # noqa: E501
"""
pass
def test_enum_test(self):
"""Test case for enum_test
Object contains enum properties and array properties containing enums # noqa: E501
"""
pass
def test_fake_health_get(self):
"""Test case for fake_health_get
Health check endpoint # noqa: E501
"""
pass
def test_mammal(self):
"""Test case for mammal
"""
pass
def test_number_with_validations(self):
"""Test case for number_with_validations
"""
pass
def test_object_model_with_ref_props(self):
"""Test case for object_model_with_ref_props
"""
pass
def test_post_inline_additional_properties_payload(self):
"""Test case for post_inline_additional_properties_payload
"""
pass
def test_post_inline_additional_properties_ref_payload(self):
"""Test case for post_inline_additional_properties_ref_payload
"""
pass
def test_string(self):
"""Test case for string
"""
pass
def test_string_enum(self):
"""Test case for string_enum
"""
pass
def test_test_body_with_file_schema(self):
"""Test case for test_body_with_file_schema
"""
pass
def test_test_body_with_query_params(self):
"""Test case for test_body_with_query_params
"""
pass
def test_test_client_model(self):
"""Test case for test_client_model
To test \"client\" model # noqa: E501
"""
pass
def test_test_endpoint_parameters(self):
"""Test case for test_endpoint_parameters
Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트 # noqa: E501
"""
pass
def test_test_enum_parameters(self):
"""Test case for test_enum_parameters
To test enum parameters # noqa: E501
"""
pass
def test_test_group_parameters(self):
"""Test case for test_group_parameters
Fake endpoint to test group parameters (optional) # noqa: E501
"""
pass
def test_test_inline_additional_properties(self):
"""Test case for test_inline_additional_properties
test inline additionalProperties # noqa: E501
"""
pass
def test_test_json_form_data(self):
"""Test case for test_json_form_data
test json serialization of form data # noqa: E501
"""
pass
def test_test_query_parameter_collection_format(self):
"""Test case for test_query_parameter_collection_format
"""
pass
def test_tx_rx_any_of_model(self):
"""Test case for tx_rx_any_of_model
"""
pass
def test_upload_download_file(self):
"""Test case for upload_download_file
uploads a file and downloads a file using application/octet-stream # noqa: E501
"""
pass
def test_upload_file(self):
"""Test case for upload_file
uploads a file using multipart/form-data # noqa: E501
"""
pass
def test_upload_files(self):
"""Test case for upload_files
uploads files using multipart/form-data # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,35 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.api.fake_classname_tags_123_api import FakeClassnameTags123Api # noqa: E501
class TestFakeClassnameTags123Api(unittest.TestCase):
"""FakeClassnameTags123Api unit test stubs"""
def setUp(self):
self.api = FakeClassnameTags123Api() # noqa: E501
def tearDown(self):
pass
def test_test_classname(self):
"""Test case for test_classname
To test class name in snake case # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,37 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.api.fake_classname_tags_123_api import FakeClassnameTags123Api # noqa: E501
class TestFakeClassnameTags123Api(unittest.TestCase):
"""FakeClassnameTags123Api unit test stubs"""
def setUp(self):
self.api = FakeClassnameTags123Api() # noqa: E501
def tearDown(self):
pass
def test_test_classname(self):
"""Test case for test_classname
To test class name in snake case # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,35 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.fake_post_inline_additional_properties_payload_array_data import FakePostInlineAdditionalPropertiesPayloadArrayData
class TestFakePostInlineAdditionalPropertiesPayloadArrayData(unittest.TestCase):
"""FakePostInlineAdditionalPropertiesPayloadArrayData unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testFakePostInlineAdditionalPropertiesPayloadArrayData(self):
"""Test FakePostInlineAdditionalPropertiesPayloadArrayData"""
# FIXME: construct object with mandatory attributes with example values
# model = FakePostInlineAdditionalPropertiesPayloadArrayData() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,37 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.foo import Foo
globals()['Foo'] = Foo
from petstore_api.model.foo_get_default_response import FooGetDefaultResponse
class TestFooGetDefaultResponse(unittest.TestCase):
"""FooGetDefaultResponse unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testFooGetDefaultResponse(self):
"""Test FooGetDefaultResponse"""
# FIXME: construct object with mandatory attributes with example values
# model = FooGetDefaultResponse() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,35 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.foo_object import FooObject
class TestFooObject(unittest.TestCase):
"""FooObject unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testFooObject(self):
"""Test FooObject"""
# FIXME: construct object with mandatory attributes with example values
# model = FooObject() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,39 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.apple import Apple
from petstore_api.model.banana import Banana
globals()['Apple'] = Apple
globals()['Banana'] = Banana
from petstore_api.model.gm_fruit_no_properties import GmFruitNoProperties
class TestGmFruitNoProperties(unittest.TestCase):
"""GmFruitNoProperties unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testGmFruitNoProperties(self):
"""Test GmFruitNoProperties"""
# FIXME: construct object with mandatory attributes with example values
# model = GmFruitNoProperties() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,37 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.fake_post_inline_additional_properties_payload_array_data import FakePostInlineAdditionalPropertiesPayloadArrayData
globals()['FakePostInlineAdditionalPropertiesPayloadArrayData'] = FakePostInlineAdditionalPropertiesPayloadArrayData
from petstore_api.model.inline_additional_properties_ref_payload import InlineAdditionalPropertiesRefPayload
class TestInlineAdditionalPropertiesRefPayload(unittest.TestCase):
"""InlineAdditionalPropertiesRefPayload unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testInlineAdditionalPropertiesRefPayload(self):
"""Test InlineAdditionalPropertiesRefPayload"""
# FIXME: construct object with mandatory attributes with example values
# model = InlineAdditionalPropertiesRefPayload() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,37 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.fake_post_inline_additional_properties_payload_array_data import FakePostInlineAdditionalPropertiesPayloadArrayData
globals()['FakePostInlineAdditionalPropertiesPayloadArrayData'] = FakePostInlineAdditionalPropertiesPayloadArrayData
from petstore_api.model.inline_object6 import InlineObject6
class TestInlineObject6(unittest.TestCase):
"""InlineObject6 unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testInlineObject6(self):
"""Test InlineObject6"""
# FIXME: construct object with mandatory attributes with example values
# model = InlineObject6() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,39 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.foo import Foo
globals()['Foo'] = Foo
from petstore_api.model.inline_response_default import InlineResponseDefault
class TestInlineResponseDefault(unittest.TestCase):
"""InlineResponseDefault unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testInlineResponseDefault(self):
"""Test InlineResponseDefault"""
# FIXME: construct object with mandatory attributes with example values
# model = InlineResponseDefault() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,41 +0,0 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.shape_interface import ShapeInterface
from petstore_api.model.triangle_interface import TriangleInterface
globals()['ShapeInterface'] = ShapeInterface
globals()['TriangleInterface'] = TriangleInterface
from petstore_api.model.isosceles_triangle import IsoscelesTriangle
class TestIsoscelesTriangle(unittest.TestCase):
"""IsoscelesTriangle unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testIsoscelesTriangle(self):
"""Test IsoscelesTriangle"""
# FIXME: construct object with mandatory attributes with example values
# model = IsoscelesTriangle() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -1,35 +0,0 @@
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.model_200_response import Model_200Response
class TestModel_200Response(unittest.TestCase):
"""Model_200Response unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testModel_200Response(self):
"""Test Model_200Response"""
# FIXME: construct object with mandatory attributes with example values
# model = Model_200Response() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.additional_properties_class import AdditionalPropertiesClass
from petstore_api import configuration
class TestAdditionalPropertiesClass(unittest.TestCase):
"""AdditionalPropertiesClass unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testAdditionalPropertiesClass(self):
"""Test AdditionalPropertiesClass"""
# FIXME: construct object with mandatory attributes with example values
# model = AdditionalPropertiesClass() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,27 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.api.default_api import DefaultApi # noqa: E501
from petstore_api.model.additional_properties_validator import AdditionalPropertiesValidator
from petstore_api import configuration
class TestDefaultApi(unittest.TestCase):
"""DefaultApi unit test stubs"""
def setUp(self):
self.api = DefaultApi() # noqa: E501
def tearDown(self):
pass
def test_foo_get(self):
"""Test case for foo_get
"""
pass
class TestAdditionalPropertiesValidator(unittest.TestCase):
"""AdditionalPropertiesValidator unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,30 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.enum_class import EnumClass
globals()['EnumClass'] = EnumClass
from petstore_api.model.additional_properties_with_array_of_enums import AdditionalPropertiesWithArrayOfEnums
from petstore_api import configuration
class TestAdditionalPropertiesWithArrayOfEnums(unittest.TestCase):
"""AdditionalPropertiesWithArrayOfEnums unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testAdditionalPropertiesWithArrayOfEnums(self):
"""Test AdditionalPropertiesWithArrayOfEnums"""
# FIXME: construct object with mandatory attributes with example values
# model = AdditionalPropertiesWithArrayOfEnums() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.address import Address
from petstore_api import configuration
class TestAddress(unittest.TestCase):
"""Address unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testAddress(self):
"""Test Address"""
# FIXME: construct object with mandatory attributes with example values
# model = Address() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,32 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.cat import Cat
from petstore_api.model.dog import Dog
globals()['Cat'] = Cat
globals()['Dog'] = Dog
from petstore_api.model.animal import Animal
from petstore_api import configuration
class TestAnimal(unittest.TestCase):
"""Animal unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testAnimal(self):
"""Test Animal"""
# FIXME: construct object with mandatory attributes with example values
# model = Animal() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,30 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.animal import Animal
globals()['Animal'] = Animal
from petstore_api.model.animal_farm import AnimalFarm
from petstore_api import configuration
class TestAnimalFarm(unittest.TestCase):
"""AnimalFarm unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testAnimalFarm(self):
"""Test AnimalFarm"""
# FIXME: construct object with mandatory attributes with example values
# model = AnimalFarm() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.list import List
from petstore_api.model.any_type_and_format import AnyTypeAndFormat
from petstore_api import configuration
class TestList(unittest.TestCase):
"""List unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testList(self):
"""Test List"""
# FIXME: construct object with mandatory attributes with example values
# model = List() # noqa: E501
pass
class TestAnyTypeAndFormat(unittest.TestCase):
"""AnyTypeAndFormat unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.any_type_not_string import AnyTypeNotString
from petstore_api import configuration
class TestAnyTypeNotString(unittest.TestCase):
"""AnyTypeNotString unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.api_response import ApiResponse
from petstore_api import configuration
class TestApiResponse(unittest.TestCase):
"""ApiResponse unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testApiResponse(self):
"""Test ApiResponse"""
# FIXME: construct object with mandatory attributes with example values
# model = ApiResponse() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.apple import Apple
from petstore_api import configuration
class TestApple(unittest.TestCase):
"""Apple unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testApple(self):
"""Test Apple"""
# FIXME: construct object with mandatory attributes with example values
# model = Apple() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.apple_req import AppleReq
from petstore_api import configuration
class TestAppleReq(unittest.TestCase):
"""AppleReq unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testAppleReq(self):
"""Test AppleReq"""
# FIXME: construct object with mandatory attributes with example values
# model = AppleReq() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.array_holding_any_type import ArrayHoldingAnyType
from petstore_api import configuration
class TestArrayHoldingAnyType(unittest.TestCase):
"""ArrayHoldingAnyType unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.array_of_array_of_number_only import ArrayOfArrayOfNumberOnly
from petstore_api import configuration
class TestArrayOfArrayOfNumberOnly(unittest.TestCase):
"""ArrayOfArrayOfNumberOnly unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testArrayOfArrayOfNumberOnly(self):
"""Test ArrayOfArrayOfNumberOnly"""
# FIXME: construct object with mandatory attributes with example values
# model = ArrayOfArrayOfNumberOnly() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,30 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.string_enum import StringEnum
globals()['StringEnum'] = StringEnum
from petstore_api.model.array_of_enums import ArrayOfEnums
from petstore_api import configuration
class TestArrayOfEnums(unittest.TestCase):
"""ArrayOfEnums unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testArrayOfEnums(self):
"""Test ArrayOfEnums"""
# FIXME: construct object with mandatory attributes with example values
# model = ArrayOfEnums() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.array_of_number_only import ArrayOfNumberOnly
from petstore_api import configuration
class TestArrayOfNumberOnly(unittest.TestCase):
"""ArrayOfNumberOnly unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testArrayOfNumberOnly(self):
"""Test ArrayOfNumberOnly"""
# FIXME: construct object with mandatory attributes with example values
# model = ArrayOfNumberOnly() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,30 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.read_only_first import ReadOnlyFirst
globals()['ReadOnlyFirst'] = ReadOnlyFirst
from petstore_api.model.array_test import ArrayTest
from petstore_api import configuration
class TestArrayTest(unittest.TestCase):
"""ArrayTest unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testArrayTest(self):
"""Test ArrayTest"""
# FIXME: construct object with mandatory attributes with example values
# model = ArrayTest() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.array_with_validations_in_items import ArrayWithValidationsInItems
from petstore_api import configuration
class TestArrayWithValidationsInItems(unittest.TestCase):
"""ArrayWithValidationsInItems unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.banana import Banana
from petstore_api import configuration
class TestBanana(unittest.TestCase):
"""Banana unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testBanana(self):
"""Test Banana"""
# FIXME: construct object with mandatory attributes with example values
# model = Banana() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.banana_req import BananaReq
from petstore_api import configuration
class TestBananaReq(unittest.TestCase):
"""BananaReq unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testBananaReq(self):
"""Test BananaReq"""
# FIXME: construct object with mandatory attributes with example values
# model = BananaReq() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.bar import Bar
from petstore_api import configuration
class TestBar(unittest.TestCase):
"""Bar unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.basque_pig import BasquePig
from petstore_api import configuration
class TestBasquePig(unittest.TestCase):
"""BasquePig unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testBasquePig(self):
"""Test BasquePig"""
# FIXME: construct object with mandatory attributes with example values
# model = BasquePig() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.boolean import Boolean
from petstore_api import configuration
class TestBoolean(unittest.TestCase):
"""Boolean unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -1,3 +1,5 @@
# coding: utf-8
"""
OpenAPI Petstore
@@ -7,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.boolean_enum import BooleanEnum
from petstore_api import configuration
class TestBooleanEnum(unittest.TestCase):
"""BooleanEnum unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testBooleanEnum(self):
"""Test BooleanEnum"""
# FIXME: construct object with mandatory attributes with example values
# model = BooleanEnum() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.capitalization import Capitalization
from petstore_api import configuration
class TestCapitalization(unittest.TestCase):
"""Capitalization unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testCapitalization(self):
"""Test Capitalization"""
# FIXME: construct object with mandatory attributes with example values
# model = Capitalization() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.cat import Cat
from petstore_api import configuration
class TestCat(unittest.TestCase):
"""Cat unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.category import Category
from petstore_api import configuration
class TestCategory(unittest.TestCase):
"""Category unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testCategory(self):
"""Test Category"""
# FIXME: construct object with mandatory attributes with example values
# model = Category() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,32 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.child_cat_all_of import ChildCatAllOf
from petstore_api.model.parent_pet import ParentPet
globals()['ChildCatAllOf'] = ChildCatAllOf
globals()['ParentPet'] = ParentPet
from petstore_api.model.child_cat import ChildCat
from petstore_api import configuration
class TestChildCat(unittest.TestCase):
"""ChildCat unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testChildCat(self):
"""Test ChildCat"""
# FIXME: construct object with mandatory attributes with example values
# model = ChildCat() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.class_model import ClassModel
from petstore_api import configuration
class TestClassModel(unittest.TestCase):
"""ClassModel unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testClassModel(self):
"""Test ClassModel"""
# FIXME: construct object with mandatory attributes with example values
# model = ClassModel() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.client import Client
from petstore_api import configuration
class TestClient(unittest.TestCase):
"""Client unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testClient(self):
"""Test Client"""
# FIXME: construct object with mandatory attributes with example values
# model = Client() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.complex_quadrilateral import ComplexQuadrilateral
from petstore_api import configuration
class TestComplexQuadrilateral(unittest.TestCase):
"""ComplexQuadrilateral unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.composed_any_of_different_types_no_validations import ComposedAnyOfDifferentTypesNoValidations
from petstore_api import configuration
class TestComposedAnyOfDifferentTypesNoValidations(unittest.TestCase):
"""ComposedAnyOfDifferentTypesNoValidations unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.composed_array import ComposedArray
from petstore_api import configuration
class TestComposedArray(unittest.TestCase):
"""ComposedArray unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.composed_bool import ComposedBool
from petstore_api import configuration
class TestComposedBool(unittest.TestCase):
"""ComposedBool unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.composed_none import ComposedNone
from petstore_api import configuration
class TestComposedNone(unittest.TestCase):
"""ComposedNone unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -1,3 +1,5 @@
# coding: utf-8
"""
OpenAPI Petstore
@@ -7,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.legs import Legs
from petstore_api.model.composed_number import ComposedNumber
from petstore_api import configuration
class TestLegs(unittest.TestCase):
"""Legs unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testLegs(self):
"""Test Legs"""
# FIXME: construct object with mandatory attributes with example values
# model = Legs() # noqa: E501
pass
class TestComposedNumber(unittest.TestCase):
"""ComposedNumber unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.composed_object import ComposedObject
from petstore_api import configuration
class TestComposedObject(unittest.TestCase):
"""ComposedObject unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.composed_one_of_different_types import ComposedOneOfDifferentTypes
from petstore_api import configuration
class TestComposedOneOfDifferentTypes(unittest.TestCase):
"""ComposedOneOfDifferentTypes unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.composed_string import ComposedString
from petstore_api import configuration
class TestComposedString(unittest.TestCase):
"""ComposedString unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.currency import Currency
from petstore_api import configuration
class TestCurrency(unittest.TestCase):
"""Currency unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.danish_pig import DanishPig
from petstore_api import configuration
class TestDanishPig(unittest.TestCase):
"""DanishPig unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testDanishPig(self):
"""Test DanishPig"""
# FIXME: construct object with mandatory attributes with example values
# model = DanishPig() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.date_time_test import DateTimeTest
from petstore_api import configuration
class TestDateTimeTest(unittest.TestCase):
"""DateTimeTest unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.date_time_with_validations import DateTimeWithValidations
from petstore_api import configuration
class TestDateTimeWithValidations(unittest.TestCase):
"""DateTimeWithValidations unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.date_with_validations import DateWithValidations
from petstore_api import configuration
class TestDateWithValidations(unittest.TestCase):
"""DateWithValidations unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.decimal_payload import DecimalPayload
from petstore_api import configuration
class TestDecimalPayload(unittest.TestCase):
"""DecimalPayload unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,32 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.animal import Animal
from petstore_api.model.dog_all_of import DogAllOf
globals()['Animal'] = Animal
globals()['DogAllOf'] = DogAllOf
from petstore_api.model.dog import Dog
from petstore_api import configuration
class TestDog(unittest.TestCase):
"""Dog unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testDog(self):
"""Test Dog"""
# FIXME: construct object with mandatory attributes with example values
# model = Dog() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.drawing import Drawing
from petstore_api import configuration
class TestDrawing(unittest.TestCase):
"""Drawing unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.enum_arrays import EnumArrays
from petstore_api import configuration
class TestEnumArrays(unittest.TestCase):
"""EnumArrays unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testEnumArrays(self):
"""Test EnumArrays"""
# FIXME: construct object with mandatory attributes with example values
# model = EnumArrays() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.enum_class import EnumClass
from petstore_api import configuration
class TestEnumClass(unittest.TestCase):
"""EnumClass unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testEnumClass(self):
"""Test EnumClass"""
# FIXME: construct object with mandatory attributes with example values
# model = EnumClass() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.enum_test import EnumTest
from petstore_api import configuration
class TestEnumTest(unittest.TestCase):
"""EnumTest unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.equilateral_triangle import EquilateralTriangle
from petstore_api import configuration
class TestEquilateralTriangle(unittest.TestCase):
"""EquilateralTriangle unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.file import File
from petstore_api import configuration
class TestFile(unittest.TestCase):
"""File unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testFile(self):
"""Test File"""
# FIXME: construct object with mandatory attributes with example values
# model = File() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,30 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.file import File
globals()['File'] = File
from petstore_api.model.file_schema_test_class import FileSchemaTestClass
from petstore_api import configuration
class TestFileSchemaTestClass(unittest.TestCase):
"""FileSchemaTestClass unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testFileSchemaTestClass(self):
"""Test FileSchemaTestClass"""
# FIXME: construct object with mandatory attributes with example values
# model = FileSchemaTestClass() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.foo import Foo
from petstore_api import configuration
class TestFoo(unittest.TestCase):
"""Foo unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testFoo(self):
"""Test Foo"""
# FIXME: construct object with mandatory attributes with example values
# model = Foo() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.format_test import FormatTest
from petstore_api import configuration
class TestFormatTest(unittest.TestCase):
"""FormatTest unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testFormatTest(self):
"""Test FormatTest"""
# FIXME: construct object with mandatory attributes with example values
# model = FormatTest() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,32 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.apple import Apple
from petstore_api.model.banana import Banana
globals()['Apple'] = Apple
globals()['Banana'] = Banana
from petstore_api.model.fruit import Fruit
from petstore_api import configuration
class TestFruit(unittest.TestCase):
"""Fruit unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testFruit(self):
"""Test Fruit"""
# FIXME: construct object with mandatory attributes with example values
# model = Fruit() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,32 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.apple_req import AppleReq
from petstore_api.model.banana_req import BananaReq
globals()['AppleReq'] = AppleReq
globals()['BananaReq'] = BananaReq
from petstore_api.model.fruit_req import FruitReq
from petstore_api import configuration
class TestFruitReq(unittest.TestCase):
"""FruitReq unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testFruitReq(self):
"""Test FruitReq"""
# FIXME: construct object with mandatory attributes with example values
# model = FruitReq() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,32 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.apple import Apple
from petstore_api.model.banana import Banana
globals()['Apple'] = Apple
globals()['Banana'] = Banana
from petstore_api.model.gm_fruit import GmFruit
from petstore_api import configuration
class TestGmFruit(unittest.TestCase):
"""GmFruit unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testGmFruit(self):
"""Test GmFruit"""
# FIXME: construct object with mandatory attributes with example values
# model = GmFruit() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,32 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.child_cat import ChildCat
from petstore_api.model.parent_pet import ParentPet
globals()['ChildCat'] = ChildCat
globals()['ParentPet'] = ParentPet
from petstore_api.model.grandparent_animal import GrandparentAnimal
from petstore_api import configuration
class TestGrandparentAnimal(unittest.TestCase):
"""GrandparentAnimal unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testGrandparentAnimal(self):
"""Test GrandparentAnimal"""
# FIXME: construct object with mandatory attributes with example values
# model = GrandparentAnimal() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.has_only_read_only import HasOnlyReadOnly
from petstore_api import configuration
class TestHasOnlyReadOnly(unittest.TestCase):
"""HasOnlyReadOnly unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testHasOnlyReadOnly(self):
"""Test HasOnlyReadOnly"""
# FIXME: construct object with mandatory attributes with example values
# model = HasOnlyReadOnly() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.health_check_result import HealthCheckResult
from petstore_api import configuration
class TestHealthCheckResult(unittest.TestCase):
"""HealthCheckResult unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testHealthCheckResult(self):
"""Test HealthCheckResult"""
# FIXME: construct object with mandatory attributes with example values
# model = HealthCheckResult() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.integer_enum import IntegerEnum
from petstore_api import configuration
class TestIntegerEnum(unittest.TestCase):
"""IntegerEnum unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testIntegerEnum(self):
"""Test IntegerEnum"""
# FIXME: construct object with mandatory attributes with example values
# model = IntegerEnum() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.integer_enum_big import IntegerEnumBig
from petstore_api import configuration
class TestIntegerEnumBig(unittest.TestCase):
"""IntegerEnumBig unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.integer_enum_one_value import IntegerEnumOneValue
from petstore_api import configuration
class TestIntegerEnumOneValue(unittest.TestCase):
"""IntegerEnumOneValue unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testIntegerEnumOneValue(self):
"""Test IntegerEnumOneValue"""
# FIXME: construct object with mandatory attributes with example values
# model = IntegerEnumOneValue() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.integer_enum_with_default_value import IntegerEnumWithDefaultValue
from petstore_api import configuration
class TestIntegerEnumWithDefaultValue(unittest.TestCase):
"""IntegerEnumWithDefaultValue unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testIntegerEnumWithDefaultValue(self):
"""Test IntegerEnumWithDefaultValue"""
# FIXME: construct object with mandatory attributes with example values
# model = IntegerEnumWithDefaultValue() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.integer_max10 import IntegerMax10
from petstore_api import configuration
class TestIntegerMax10(unittest.TestCase):
"""IntegerMax10 unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.integer_min15 import IntegerMin15
from petstore_api import configuration
class TestIntegerMin15(unittest.TestCase):
"""IntegerMin15 unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.isosceles_triangle import IsoscelesTriangle
from petstore_api import configuration
class TestIsoscelesTriangle(unittest.TestCase):
"""IsoscelesTriangle unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.json_patch_request import JSONPatchRequest
from petstore_api import configuration
class TestJSONPatchRequest(unittest.TestCase):
"""JSONPatchRequest unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.json_patch_request_add_replace_test import JSONPatchRequestAddReplaceTest
from petstore_api import configuration
class TestJSONPatchRequestAddReplaceTest(unittest.TestCase):
"""JSONPatchRequestAddReplaceTest unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.json_patch_request_move_copy import JSONPatchRequestMoveCopy
from petstore_api import configuration
class TestJSONPatchRequestMoveCopy(unittest.TestCase):
"""JSONPatchRequestMoveCopy unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -0,0 +1,25 @@
# coding: utf-8
"""
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: \" \\ # noqa: E501
The version of the OpenAPI document: 1.0.0
Generated by: https://openapi-generator.tech
"""
import unittest
import petstore_api
from petstore_api.model.json_patch_request_remove import JSONPatchRequestRemove
from petstore_api import configuration
class TestJSONPatchRequestRemove(unittest.TestCase):
"""JSONPatchRequestRemove unit test stubs"""
_configuration = configuration.Configuration()
if __name__ == '__main__':
unittest.main()

View File

@@ -9,34 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.pig import Pig
from petstore_api.model.whale import Whale
from petstore_api.model.zebra import Zebra
globals()['Pig'] = Pig
globals()['Whale'] = Whale
globals()['Zebra'] = Zebra
from petstore_api.model.mammal import Mammal
from petstore_api import configuration
class TestMammal(unittest.TestCase):
"""Mammal unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testMammal(self):
"""Test Mammal"""
# FIXME: construct object with mandatory attributes with example values
# model = Mammal() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,30 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.string_boolean_map import StringBooleanMap
globals()['StringBooleanMap'] = StringBooleanMap
from petstore_api.model.map_test import MapTest
from petstore_api import configuration
class TestMapTest(unittest.TestCase):
"""MapTest unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testMapTest(self):
"""Test MapTest"""
# FIXME: construct object with mandatory attributes with example values
# model = MapTest() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,30 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.animal import Animal
globals()['Animal'] = Animal
from petstore_api.model.mixed_properties_and_additional_properties_class import MixedPropertiesAndAdditionalPropertiesClass
from petstore_api import configuration
class TestMixedPropertiesAndAdditionalPropertiesClass(unittest.TestCase):
"""MixedPropertiesAndAdditionalPropertiesClass unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testMixedPropertiesAndAdditionalPropertiesClass(self):
"""Test MixedPropertiesAndAdditionalPropertiesClass"""
# FIXME: construct object with mandatory attributes with example values
# model = MixedPropertiesAndAdditionalPropertiesClass() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

View File

@@ -9,28 +9,16 @@
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import petstore_api
from petstore_api.model.model200_response import Model200Response
from petstore_api import configuration
class TestModel200Response(unittest.TestCase):
"""Model200Response unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testModel200Response(self):
"""Test Model200Response"""
# FIXME: construct object with mandatory attributes with example values
# model = Model200Response() # noqa: E501
pass
_configuration = configuration.Configuration()
if __name__ == '__main__':

Some files were not shown because too many files have changed in this diff Show More