mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 11:06:50 +00:00
35 lines
667 B
Python
35 lines
667 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.days_of_week import DaysOfWeek
|
|
|
|
class TestDaysOfWeek(unittest.TestCase):
|
|
"""DaysOfWeek unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def testDaysOfWeek(self):
|
|
"""Test DaysOfWeek"""
|
|
# inst = DaysOfWeek()
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|