|
|
|
|
|
|
|
|
""" |
|
|
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.bio_model import BioModel |
|
|
|
|
|
class TestBioModel(unittest.TestCase): |
|
|
"""BioModel unit test stubs""" |
|
|
|
|
|
def setUp(self): |
|
|
pass |
|
|
|
|
|
def tearDown(self): |
|
|
pass |
|
|
|
|
|
def make_instance(self, include_optional) -> BioModel: |
|
|
"""Test BioModel |
|
|
include_option is a boolean, when False only required |
|
|
params are included, when True both required and |
|
|
optional params are included """ |
|
|
|
|
|
""" |
|
|
model = BioModel() |
|
|
if include_optional: |
|
|
return BioModel( |
|
|
bm_key = '', |
|
|
name = '', |
|
|
privacy = 56, |
|
|
group_users = [ |
|
|
'' |
|
|
], |
|
|
saved_date = 56, |
|
|
annot = '', |
|
|
branch_id = '', |
|
|
phys_model_key = '', |
|
|
owner_name = '', |
|
|
owner_key = '', |
|
|
simulation_key_list = [ |
|
|
'' |
|
|
], |
|
|
applications = [ |
|
|
vcell_client.models.application.Application() |
|
|
] |
|
|
) |
|
|
else: |
|
|
return BioModel( |
|
|
) |
|
|
""" |
|
|
|
|
|
def testBioModel(self): |
|
|
"""Test BioModel""" |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
unittest.main() |
|
|
|