zrok/sdk/python/src/test/test_create_organization201_response.py
2025-03-04 20:10:37 -05:00

52 lines
1.4 KiB
Python

# coding: utf-8
"""
zrok
zrok client access
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from zrok_api.models.create_organization201_response import CreateOrganization201Response
class TestCreateOrganization201Response(unittest.TestCase):
"""CreateOrganization201Response unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def make_instance(self, include_optional) -> CreateOrganization201Response:
"""Test CreateOrganization201Response
include_optional is a boolean, when False only required
params are included, when True both required and
optional params are included """
# uncomment below to create an instance of `CreateOrganization201Response`
"""
model = CreateOrganization201Response()
if include_optional:
return CreateOrganization201Response(
organization_token = ''
)
else:
return CreateOrganization201Response(
)
"""
def testCreateOrganization201Response(self):
"""Test CreateOrganization201Response"""
# inst_req_only = self.make_instance(include_optional=False)
# inst_req_and_optional = self.make_instance(include_optional=True)
if __name__ == '__main__':
unittest.main()