mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 09:25:30 +00:00
46 lines
864 B
Python
46 lines
864 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
Alerts API
|
|
|
|
## Overview Manage all alerts, alert rules and alert suppression windows.
|
|
|
|
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 alerts_api.api.alerts_api import AlertsApi
|
|
|
|
|
|
class TestAlertsApi(unittest.TestCase):
|
|
"""AlertsApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = AlertsApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_get_alert_details(self) -> None:
|
|
"""Test case for get_alert_details
|
|
|
|
Retrieve alert details
|
|
"""
|
|
pass
|
|
|
|
def test_get_alerts(self) -> None:
|
|
"""Test case for get_alerts
|
|
|
|
List active alerts
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|