mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 02:56:51 +00:00
67 lines
1.3 KiB
Python
67 lines
1.3 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
ThousandEyes for OpenTelemetry
|
|
|
|
Configure ThousandEyes to stream or push test data to a OpenTelemetry compliant endpoint with the ThousandEyes for OpenTelemetry 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 streaming_api.api.streaming_api import StreamingApi
|
|
|
|
|
|
class TestStreamingApi(unittest.TestCase):
|
|
"""StreamingApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = StreamingApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_create_stream(self) -> None:
|
|
"""Test case for create_stream
|
|
|
|
Create data stream
|
|
"""
|
|
pass
|
|
|
|
def test_delete_stream(self) -> None:
|
|
"""Test case for delete_stream
|
|
|
|
Delete a data stream
|
|
"""
|
|
pass
|
|
|
|
def test_get_stream(self) -> None:
|
|
"""Test case for get_stream
|
|
|
|
Retrieve data stream
|
|
"""
|
|
pass
|
|
|
|
def test_get_streams(self) -> None:
|
|
"""Test case for get_streams
|
|
|
|
List data streams
|
|
"""
|
|
pass
|
|
|
|
def test_put_stream(self) -> None:
|
|
"""Test case for put_stream
|
|
|
|
Update data stream
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|