mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 02:56:51 +00:00
39 lines
802 B
Python
39 lines
802 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
Test Results API
|
|
|
|
Get test result metrics for Cloud and Enterprise Agent tests.
|
|
|
|
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 test_results_api.api.dnssec_test_metrics_api import DNSSECTestMetricsApi
|
|
|
|
|
|
class TestDNSSECTestMetricsApi(unittest.TestCase):
|
|
"""DNSSECTestMetricsApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = DNSSECTestMetricsApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_get_test_result_dnssec(self) -> None:
|
|
"""Test case for get_test_result_dnssec
|
|
|
|
Get DNSSEC test results
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|