|
|
|
|
|
|
|
|
""" |
|
|
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.composite_curve import CompositeCurve |
|
|
|
|
|
class TestCompositeCurve(unittest.TestCase): |
|
|
"""CompositeCurve unit test stubs""" |
|
|
|
|
|
def setUp(self): |
|
|
pass |
|
|
|
|
|
def tearDown(self): |
|
|
pass |
|
|
|
|
|
def make_instance(self, include_optional) -> CompositeCurve: |
|
|
"""Test CompositeCurve |
|
|
include_option is a boolean, when False only required |
|
|
params are included, when True both required and |
|
|
optional params are included """ |
|
|
|
|
|
""" |
|
|
model = CompositeCurve() |
|
|
if include_optional: |
|
|
return CompositeCurve( |
|
|
type = 'CompositeCurve', |
|
|
field_curves = [ |
|
|
null |
|
|
], |
|
|
curve_count = 56, |
|
|
default_num_samples = 56, |
|
|
segment_count = 56, |
|
|
valid = True |
|
|
) |
|
|
else: |
|
|
return CompositeCurve( |
|
|
type = 'CompositeCurve', |
|
|
) |
|
|
""" |
|
|
|
|
|
def testCompositeCurve(self): |
|
|
"""Test CompositeCurve""" |
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__': |
|
|
unittest.main() |
|
|
|