|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +""" |
| 4 | + Bandwidth |
| 5 | +
|
| 6 | + Bandwidth's Communication APIs |
| 7 | +
|
| 8 | + The version of the OpenAPI document: 1.0.0 |
| 9 | + |
| 10 | + Generated by OpenAPI Generator (https://openapi-generator.tech) |
| 11 | +
|
| 12 | + Do not edit the class manually. |
| 13 | +""" # noqa: E501 |
| 14 | + |
| 15 | + |
| 16 | +import unittest |
| 17 | + |
| 18 | +from bandwidth.models.product_type_enum import ProductTypeEnum |
| 19 | + |
| 20 | +class TestProductTypeEnum(unittest.TestCase): |
| 21 | + """ProductTypeEnum unit test stubs""" |
| 22 | + |
| 23 | + def setUp(self): |
| 24 | + pass |
| 25 | + |
| 26 | + def tearDown(self): |
| 27 | + pass |
| 28 | + |
| 29 | + def testProductTypeEnum(self): |
| 30 | + """Test ProductTypeEnum""" |
| 31 | + local_a2p = ProductTypeEnum('LOCAL_A2P') |
| 32 | + p2p = ProductTypeEnum('P2P') |
| 33 | + short_code_reach = ProductTypeEnum('SHORT_CODE_REACH') |
| 34 | + toll_free = ProductTypeEnum('TOLL_FREE') |
| 35 | + hosted_short_code = ProductTypeEnum('HOSTED_SHORT_CODE') |
| 36 | + alpha_numeric = ProductTypeEnum('ALPHA_NUMERIC') |
| 37 | + rbm_media = ProductTypeEnum('RBM_MEDIA') |
| 38 | + rbm_rich = ProductTypeEnum('RBM_RICH') |
| 39 | + rbm_conversational = ProductTypeEnum('RBM_CONVERSATIONAL') |
| 40 | + assert local_a2p == 'LOCAL_A2P' |
| 41 | + assert p2p == 'P2P' |
| 42 | + assert short_code_reach == 'SHORT_CODE_REACH' |
| 43 | + assert toll_free == 'TOLL_FREE' |
| 44 | + assert hosted_short_code == 'HOSTED_SHORT_CODE' |
| 45 | + assert alpha_numeric == 'ALPHA_NUMERIC' |
| 46 | + assert rbm_media == 'RBM_MEDIA' |
| 47 | + assert rbm_rich == 'RBM_RICH' |
| 48 | + assert rbm_conversational == 'RBM_CONVERSATIONAL' |
| 49 | + |
| 50 | +if __name__ == '__main__': |
| 51 | + unittest.main() |
0 commit comments