# 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.enterprise_agent_cluster_api import EnterpriseAgentClusterApi class TestEnterpriseAgentClusterApi(unittest.TestCase): """EnterpriseAgentClusterApi unit test stubs""" def setUp(self) -> None: self.api = EnterpriseAgentClusterApi() def tearDown(self) -> None: pass def test_assign_enterprise_agent_cluster(self) -> None: """Test case for assign_enterprise_agent_cluster Add member to Enterprise Agent cluster """ pass def test_unassign_enterprise_agent_from_cluster(self) -> None: """Test case for unassign_enterprise_agent_from_cluster Remove member from Enterprise Agent cluster """ pass if __name__ == '__main__': unittest.main()