thousandeyes-sdk-python/tests_api/test/test_path_visualization_interface_groups_api.py
2023-12-11 09:29:15 +00:00

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