# 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.web_transaction_api import WebTransactionApi class TestWebTransactionApi(unittest.TestCase): """WebTransactionApi unit test stubs""" def setUp(self) -> None: self.api = WebTransactionApi() def tearDown(self) -> None: pass def test_create_web_transactions_test(self) -> None: """Test case for create_web_transactions_test Create Web Transactions test """ pass def test_delete_web_transactions_test(self) -> None: """Test case for delete_web_transactions_test Delete Web Transactions test """ pass def test_get_web_transactions_test(self) -> None: """Test case for get_web_transactions_test Get Web Transactions test """ pass def test_get_web_transactions_tests(self) -> None: """Test case for get_web_transactions_tests List Web Transactions tests """ pass def test_update_web_transactions_test(self) -> None: """Test case for update_web_transactions_test Update Web Transactions test """ pass if __name__ == '__main__': unittest.main()