mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 02:56:51 +00:00
46 lines
925 B
Python
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()
|