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