# 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()