| |
|
|
| """ |
| 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.htc_job_id import HtcJobID |
|
|
| class TestHtcJobID(unittest.TestCase): |
| """HtcJobID unit test stubs""" |
|
|
| def setUp(self): |
| pass |
|
|
| def tearDown(self): |
| pass |
|
|
| def make_instance(self, include_optional) -> HtcJobID: |
| """Test HtcJobID |
| include_option is a boolean, when False only required |
| params are included, when True both required and |
| optional params are included """ |
| |
| """ |
| model = HtcJobID() |
| if include_optional: |
| return HtcJobID( |
| job_number = 56, |
| server = '', |
| batch_system_type = 'PBS' |
| ) |
| else: |
| return HtcJobID( |
| ) |
| """ |
|
|
| def testHtcJobID(self): |
| """Test HtcJobID""" |
| |
| |
|
|
| if __name__ == '__main__': |
| unittest.main() |
|
|