mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-21 18:46:51 +00:00
60 lines
1.3 KiB
Python
60 lines
1.3 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Labels API
|
|
|
|
### Overview This is API for the Labels API (formerly called groups).
|
|
|
|
The version of the OpenAPI document: 7.0.0
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import unittest
|
|
|
|
from labels_api.api.dashboard_api import DashboardApi
|
|
|
|
|
|
class TestDashboardApi(unittest.TestCase):
|
|
"""DashboardApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = DashboardApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_create_dashboard_label(self) -> None:
|
|
"""Test case for create_dashboard_label
|
|
|
|
Create a Label of type `dashboard`
|
|
"""
|
|
pass
|
|
|
|
def test_delete_dashboard_label(self) -> None:
|
|
"""Test case for delete_dashboard_label
|
|
|
|
Delete a Label object of type `dashboard`
|
|
"""
|
|
pass
|
|
|
|
def test_get_dashboard_label(self) -> None:
|
|
"""Test case for get_dashboard_label
|
|
|
|
Get a Label object of type `dashboard`
|
|
"""
|
|
pass
|
|
|
|
def test_update_dashboard_label(self) -> None:
|
|
"""Test case for update_dashboard_label
|
|
|
|
Update a Label object of type `dashboard`
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|