test_location_management_api.py
1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# coding: utf-8
"""
FastAPI
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
The version of the OpenAPI document: 0.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from openapi_client.api.location_management_api import LocationManagementApi
class TestLocationManagementApi(unittest.TestCase):
"""LocationManagementApi unit test stubs"""
def setUp(self) -> None:
self.api = LocationManagementApi()
def tearDown(self) -> None:
pass
def test_delete_location_locations_user_id_user_type_id_location_id_delete(self) -> None:
"""Test case for delete_location_locations_user_id_user_type_id_location_id_delete
Delete Location
"""
pass
def test_get_user_locations_locations_user_id_user_type_id_get(self) -> None:
"""Test case for get_user_locations_locations_user_id_user_type_id_get
Get User Locations
"""
pass
def test_new_location_locations_user_id_user_type_id_post(self) -> None:
"""Test case for new_location_locations_user_id_user_type_id_post
New Location
"""
pass
def test_recover_location_locations_user_id_user_type_id_location_id_put(self) -> None:
"""Test case for recover_location_locations_user_id_user_type_id_location_id_put
Recover Location
"""
pass
def test_update_location_locations_user_id_user_type_id_put(self) -> None:
"""Test case for update_location_locations_user_id_user_type_id_put
Update Location
"""
pass
if __name__ == '__main__':
unittest.main()