mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 02:56:51 +00:00
35 lines
787 B
Python
35 lines
787 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
|
|
import datetime
|
|
|
|
from alerts_api.models.alert_suppression_window_state import AlertSuppressionWindowState
|
|
|
|
class TestAlertSuppressionWindowState(unittest.TestCase):
|
|
"""AlertSuppressionWindowState unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def testAlertSuppressionWindowState(self):
|
|
"""Test AlertSuppressionWindowState"""
|
|
# inst = AlertSuppressionWindowState()
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|