thousandeyes-sdk-python/endpoint/agents_api/test/test_transfer_api.py
2023-12-11 09:29:15 +00:00

46 lines
925 B
Python

# coding: utf-8
"""
Endpoint Agents API
Manage ThousandEyes Endpoint Agents using this API.
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.transfer_api import TransferApi
class TestTransferApi(unittest.TestCase):
"""TransferApi unit test stubs"""
def setUp(self) -> None:
self.api = TransferApi()
def tearDown(self) -> None:
pass
def test_endpoint_agent_bulk_transfer(self) -> None:
"""Test case for endpoint_agent_bulk_transfer
Bulk transfer agents
"""
pass
def test_endpoint_agent_single_transfer(self) -> None:
"""Test case for endpoint_agent_single_transfer
Transfer endpoint agent
"""
pass
if __name__ == '__main__':
unittest.main()