# 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.bgp_api import BGPApi class TestBGPApi(unittest.TestCase): """BGPApi unit test stubs""" def setUp(self) -> None: self.api = BGPApi() def tearDown(self) -> None: pass def test_create_bgp_test(self) -> None: """Test case for create_bgp_test Create BGP test """ pass def test_delete_bgp_test(self) -> None: """Test case for delete_bgp_test Delete BGP test """ pass def test_get_bgp_test(self) -> None: """Test case for get_bgp_test Get BGP test """ pass def test_get_bgp_tests(self) -> None: """Test case for get_bgp_tests List BGP tests """ pass def test_update_bgp_test(self) -> None: """Test case for update_bgp_test Update BGP test """ pass if __name__ == '__main__': unittest.main()