mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 02:56:51 +00:00
35 lines
703 B
Python
35 lines
703 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
Endpoint Test Results API
|
|
|
|
Retrieve results for scheduled and dynamic tests on endpoint agents.
|
|
|
|
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 test_results_api.models.test_probe_mode import TestProbeMode
|
|
|
|
class TestTestProbeMode(unittest.TestCase):
|
|
"""TestProbeMode unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def testTestProbeMode(self):
|
|
"""Test TestProbeMode"""
|
|
# inst = TestProbeMode()
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|