# 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_agent_api import AgentToAgentApi class TestAgentToAgentApi(unittest.TestCase): """AgentToAgentApi unit test stubs""" def setUp(self) -> None: self.api = AgentToAgentApi() def tearDown(self) -> None: pass def test_create_agent_to_agent_test(self) -> None: """Test case for create_agent_to_agent_test Create Agent to Agent test """ pass def test_delete_agent_to_agent_test(self) -> None: """Test case for delete_agent_to_agent_test Delete Agent to Agent test """ pass def test_get_agent_to_agent_test(self) -> None: """Test case for get_agent_to_agent_test Get Agent to Agent test """ pass def test_get_agent_to_agent_tests(self) -> None: """Test case for get_agent_to_agent_tests List Agent to Agent tests """ pass def test_update_agent_to_agent_test(self) -> None: """Test case for update_agent_to_agent_test Update Agent to Agent test """ pass if __name__ == '__main__': unittest.main()