mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 01:25:29 +00:00
39 lines
779 B
Python
39 lines
779 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
Agents API
|
|
|
|
## Overview Manage all agents available to your account in ThousandEyes, including both Cloud and Enterprise Agents.
|
|
|
|
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 agents_api.api.proxies_api import ProxiesApi
|
|
|
|
|
|
class TestProxiesApi(unittest.TestCase):
|
|
"""ProxiesApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = ProxiesApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_get_agent_proxies(self) -> None:
|
|
"""Test case for get_agent_proxies
|
|
|
|
List agent proxies
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|