test_location_management_api.py 1.73 KB
# 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()