mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 02:56:51 +00:00
67 lines
1.5 KiB
Python
67 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.agent_to_server_api import AgentToServerApi
|
|
|
|
|
|
class TestAgentToServerApi(unittest.TestCase):
|
|
"""AgentToServerApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = AgentToServerApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_create_agent_to_server_test(self) -> None:
|
|
"""Test case for create_agent_to_server_test
|
|
|
|
Create Agent to Server test
|
|
"""
|
|
pass
|
|
|
|
def test_delete_agent_to_server_test(self) -> None:
|
|
"""Test case for delete_agent_to_server_test
|
|
|
|
Delete Agent to Server test
|
|
"""
|
|
pass
|
|
|
|
def test_get_agent_to_server_test(self) -> None:
|
|
"""Test case for get_agent_to_server_test
|
|
|
|
Get Agent to Server test
|
|
"""
|
|
pass
|
|
|
|
def test_get_agent_to_server_tests(self) -> None:
|
|
"""Test case for get_agent_to_server_tests
|
|
|
|
List Agent to Server tests
|
|
"""
|
|
pass
|
|
|
|
def test_update_agent_to_server_test(self) -> None:
|
|
"""Test case for update_agent_to_server_test
|
|
|
|
Update Agent to Server test
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|