|
|
|
|
|
|
|
|
""" |
|
|
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_child_summary import BioModelChildSummary |
|
|
|
|
|
class TestBioModelChildSummary(unittest.TestCase): |
|
|
"""BioModelChildSummary unit test stubs""" |
|
|
|
|
|
def setUp(self): |
|
|
pass |
|
|
|
|
|
def tearDown(self): |
|
|
pass |
|
|
|
|
|
def make_instance(self, include_optional) -> BioModelChildSummary: |
|
|
"""Test BioModelChildSummary |
|
|
include_option is a boolean, when False only required |
|
|
params are included, when True both required and |
|
|
optional params are included """ |
|
|
|
|
|
""" |
|
|
model = BioModelChildSummary() |
|
|
if include_optional: |
|
|
return BioModelChildSummary( |
|
|
sc_names = [ |
|
|
'' |
|
|
], |
|
|
sc_annots = [ |
|
|
'' |
|
|
], |
|
|
geo_names = [ |
|
|
'' |
|
|
], |
|
|
geo_dims = [ |
|
|
56 |
|
|
], |
|
|
app_types = [ |
|
|
'RuleBased' |
|
|
], |
|
|
sim_names = [ |
|
|
[ |
|
|
'' |
|
|
] |
|
|
], |
|
|
sim_annots = [ |
|
|
[ |
|
|
'' |
|
|
] |
|
|
], |
|
|
geometry_dimensions = [ |
|
|
56 |
|
|
], |
|
|
geometry_names = [ |
|
|
'' |
|
|
], |
|
|
simulation_context_annotations = [ |
|
|
'' |
|
|
], |
|
|
simulation_context_names = [ |
|
|
'' |
|
|
], |
|
|
application_info = [ |
|
|
vcell_client.models.application_info.ApplicationInfo( |
|
|
name = '', |
|
|
type = 'RuleBased', |
|
|
dimensions = 56, |
|
|
geometry_name = '', ) |
|
|
] |
|
|
) |
|
|
else: |
|
|
return BioModelChildSummary( |
|
|
) |
|
|
""" |
|
|
|
|
|
def testBioModelChildSummary(self): |
|
|
"""Test BioModelChildSummary""" |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
unittest.main() |
|
|
|