test_dashboard_data_api.py
872 Bytes
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
# 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()