|
3 | 3 | """ |
4 | 4 | Echo Server API |
5 | 5 |
|
6 | | - Echo Server API # noqa: E501 |
| 6 | + Echo Server API |
7 | 7 |
|
8 | 8 | The version of the OpenAPI document: 0.1.0 |
9 | 9 | |
10 | | - Generated by: https://openapi-generator.tech |
11 | | -""" |
| 10 | + Generated by OpenAPI Generator (https://openapi-generator.tech) |
12 | 11 |
|
| 12 | + Do not edit the class manually. |
| 13 | +""" # noqa: E501 |
13 | 14 |
|
14 | | -from __future__ import absolute_import |
15 | 15 |
|
16 | 16 | import unittest |
17 | 17 |
|
18 | | -import openapi_client |
19 | | -from openapi_client.api.body_api import BodyApi # noqa: E501 |
20 | | -from openapi_client.rest import ApiException |
| 18 | +from openapi_client.api.body_api import BodyApi |
21 | 19 |
|
22 | 20 |
|
23 | 21 | class TestBodyApi(unittest.TestCase): |
24 | 22 | """BodyApi unit test stubs""" |
25 | 23 |
|
26 | | - def setUp(self): |
27 | | - self.api = openapi_client.api.body_api.BodyApi() # noqa: E501 |
| 24 | + def setUp(self) -> None: |
| 25 | + self.api = BodyApi() |
| 26 | + |
| 27 | + def tearDown(self) -> None: |
| 28 | + self.api.api_client.close() |
| 29 | + |
| 30 | + def test_test_binary_gif(self) -> None: |
| 31 | + """Test case for test_binary_gif |
| 32 | +
|
| 33 | + Test binary (gif) response body |
| 34 | + """ |
| 35 | + pass |
| 36 | + |
| 37 | + def test_test_body_application_octetstream_binary(self) -> None: |
| 38 | + """Test case for test_body_application_octetstream_binary |
28 | 39 |
|
29 | | - def tearDown(self): |
| 40 | + Test body parameter(s) |
| 41 | + """ |
30 | 42 | pass |
31 | 43 |
|
32 | | - def test_test_echo_body_pet(self): |
| 44 | + def test_test_body_multipart_formdata_array_of_binary(self) -> None: |
| 45 | + """Test case for test_body_multipart_formdata_array_of_binary |
| 46 | +
|
| 47 | + Test array of binary in multipart mime |
| 48 | + """ |
| 49 | + pass |
| 50 | + |
| 51 | + def test_test_body_multipart_formdata_single_binary(self) -> None: |
| 52 | + """Test case for test_body_multipart_formdata_single_binary |
| 53 | +
|
| 54 | + Test single binary in multipart mime |
| 55 | + """ |
| 56 | + pass |
| 57 | + |
| 58 | + def test_test_echo_body_all_of_pet(self) -> None: |
| 59 | + """Test case for test_echo_body_all_of_pet |
| 60 | +
|
| 61 | + Test body parameter(s) |
| 62 | + """ |
| 63 | + pass |
| 64 | + |
| 65 | + def test_test_echo_body_free_form_object_response_string(self) -> None: |
| 66 | + """Test case for test_echo_body_free_form_object_response_string |
| 67 | +
|
| 68 | + Test free form object |
| 69 | + """ |
| 70 | + pass |
| 71 | + |
| 72 | + def test_test_echo_body_pet(self) -> None: |
33 | 73 | """Test case for test_echo_body_pet |
34 | 74 |
|
35 | | - Test body parameter(s) # noqa: E501 |
| 75 | + Test body parameter(s) |
| 76 | + """ |
| 77 | + pass |
| 78 | + |
| 79 | + def test_test_echo_body_pet_response_string(self) -> None: |
| 80 | + """Test case for test_echo_body_pet_response_string |
| 81 | +
|
| 82 | + Test empty response body |
| 83 | + """ |
| 84 | + pass |
| 85 | + |
| 86 | + def test_test_echo_body_string_enum(self) -> None: |
| 87 | + """Test case for test_echo_body_string_enum |
| 88 | +
|
| 89 | + Test string enum response body |
| 90 | + """ |
| 91 | + pass |
| 92 | + |
| 93 | + def test_test_echo_body_tag_response_string(self) -> None: |
| 94 | + """Test case for test_echo_body_tag_response_string |
| 95 | +
|
| 96 | + Test empty json (request body) |
36 | 97 | """ |
37 | 98 | pass |
38 | 99 |
|
|
0 commit comments