|
|
|
|
|
|
|
|
""" |
|
|
VCell API |
|
|
|
|
|
VCell API |
|
|
|
|
|
The version of the OpenAPI document: 1.0.1 |
|
|
Contact: vcell_support@uchc.com |
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech) |
|
|
|
|
|
Do not edit the class manually. |
|
|
""" |
|
|
|
|
|
|
|
|
import unittest |
|
|
import datetime |
|
|
|
|
|
from vcell_client.models.group_access import GroupAccess |
|
|
|
|
|
class TestGroupAccess(unittest.TestCase): |
|
|
"""GroupAccess unit test stubs""" |
|
|
|
|
|
def setUp(self): |
|
|
pass |
|
|
|
|
|
def tearDown(self): |
|
|
pass |
|
|
|
|
|
def make_instance(self, include_optional) -> GroupAccess: |
|
|
"""Test GroupAccess |
|
|
include_option is a boolean, when False only required |
|
|
params are included, when True both required and |
|
|
optional params are included """ |
|
|
|
|
|
""" |
|
|
model = GroupAccess() |
|
|
if include_optional: |
|
|
return GroupAccess( |
|
|
groupid = 1.337, |
|
|
description = '' |
|
|
) |
|
|
else: |
|
|
return GroupAccess( |
|
|
groupid = 1.337, |
|
|
) |
|
|
""" |
|
|
|
|
|
def testGroupAccess(self): |
|
|
"""Test GroupAccess""" |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
unittest.main() |
|
|
|