thousandeyes-sdk-python/thousandeyes-sdk-instant-tests/test/test_instant_tests_api_integration.py
Kevin 5441f44f1f CP-2453 Add generated integration tests for all SDK packages
Sync OAS-driven integration test artifacts (mock manifest, test base, conftest, and per-operation integration tests) across 21 packages for CP-2453 full rollout evaluation.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-28 12:07:00 +01:00

36 lines
1.2 KiB
Python

# coding: utf-8
"""
Instant Tests API
The Instant Tests API operations lets you create and run new instant tests. You will need to be an Account Admin. The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import json
import unittest
import thousandeyes_sdk.instant_tests.models
from thousandeyes_sdk.core.exceptions import ApiException
from thousandeyes_sdk.instant_tests.api.instant_tests_api import InstantTestsApi
from .integration_test_utils import IntegrationTestBase
from .test_utils import assert_constructed_model_matches_example_json
class TestInstantTestsApiIntegration(IntegrationTestBase):
"""InstantTestsApi integration test stubs"""
def setUp(self) -> None:
super().setUp()
self.api = InstantTestsApi(self.api_client)
if __name__ == '__main__':
unittest.main()