|
|
|
|
|
|
|
|
""" |
|
|
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_some import GroupAccessSome |
|
|
|
|
|
class TestGroupAccessSome(unittest.TestCase): |
|
|
"""GroupAccessSome unit test stubs""" |
|
|
|
|
|
def setUp(self): |
|
|
pass |
|
|
|
|
|
def tearDown(self): |
|
|
pass |
|
|
|
|
|
def make_instance(self, include_optional) -> GroupAccessSome: |
|
|
"""Test GroupAccessSome |
|
|
include_option is a boolean, when False only required |
|
|
params are included, when True both required and |
|
|
optional params are included """ |
|
|
|
|
|
""" |
|
|
model = GroupAccessSome() |
|
|
if include_optional: |
|
|
return GroupAccessSome( |
|
|
type = 'GroupAccessSome', |
|
|
hash = 1.337, |
|
|
group_members = [ |
|
|
vcell_client.models.user.User( |
|
|
user_name = '', |
|
|
key = '', |
|
|
my_specials = [ |
|
|
'admins' |
|
|
], ) |
|
|
], |
|
|
hidden_members = [ |
|
|
True |
|
|
], |
|
|
description = '', |
|
|
hidden_group_members = [ |
|
|
vcell_client.models.user.User( |
|
|
user_name = '', |
|
|
key = '', |
|
|
my_specials = [ |
|
|
'admins' |
|
|
], ) |
|
|
], |
|
|
normal_group_members = [ |
|
|
vcell_client.models.user.User( |
|
|
user_name = '', |
|
|
key = '', |
|
|
my_specials = [ |
|
|
'admins' |
|
|
], ) |
|
|
] |
|
|
) |
|
|
else: |
|
|
return GroupAccessSome( |
|
|
type = 'GroupAccessSome', |
|
|
) |
|
|
""" |
|
|
|
|
|
def testGroupAccessSome(self): |
|
|
"""Test GroupAccessSome""" |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
unittest.main() |
|
|
|