test_dashboard_data_api.py 872 Bytes
# 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.dashboard_data_api import DashboardDataApi


class TestDashboardDataApi(unittest.TestCase):
    """DashboardDataApi unit test stubs"""

    def setUp(self) -> None:
        self.api = DashboardDataApi()

    def tearDown(self) -> None:
        pass

    def test_get_dashboard_data_dashboard_user_id_user_type_id_get(self) -> None:
        """Test case for get_dashboard_data_dashboard_user_id_user_type_id_get

        Get Dashboard Data
        """
        pass


if __name__ == '__main__':
    unittest.main()