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

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