# 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()