mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 02:56:51 +00:00
60 lines
1.5 KiB
Python
60 lines
1.5 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Tests API
|
|
|
|
### Overview This API supports listing, creating, editing, and deleting Cloud and Enterprise Agent (CEA) based tests.
|
|
|
|
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 tests_api.api.path_visualization_interface_groups_api import PathVisualizationInterfaceGroupsApi
|
|
|
|
|
|
class TestPathVisualizationInterfaceGroupsApi(unittest.TestCase):
|
|
"""PathVisualizationInterfaceGroupsApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = PathVisualizationInterfaceGroupsApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_create_path_vis_interface_groups(self) -> None:
|
|
"""Test case for create_path_vis_interface_groups
|
|
|
|
Create interface group for path visualization
|
|
"""
|
|
pass
|
|
|
|
def test_delete_path_vis_interface_group(self) -> None:
|
|
"""Test case for delete_path_vis_interface_group
|
|
|
|
Delete interface group
|
|
"""
|
|
pass
|
|
|
|
def test_get_path_vis_interface_groups(self) -> None:
|
|
"""Test case for get_path_vis_interface_groups
|
|
|
|
List interface groups for path visualization
|
|
"""
|
|
pass
|
|
|
|
def test_update_path_vis_interface_group(self) -> None:
|
|
"""Test case for update_path_vis_interface_group
|
|
|
|
Update interface group
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|