blob: e1033294cbf7ba168114f5f21fc069cc6084a939 [file]
# coding: utf-8
"""
Airflow API
Airflow API. All endpoints located under ``/api/v2`` can be used safely, are stable and backward compatible. Endpoints located under ``/ui`` are dedicated to the UI and are subject to breaking change depending on the need of the frontend. Users should not rely on those but use the public ones instead.
The version of the OpenAPI document: 2
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from airflow_client.client.api.task_state_store_api import TaskStateStoreApi
class TestTaskStateStoreApi(unittest.TestCase):
"""TaskStateStoreApi unit test stubs"""
def setUp(self) -> None:
self.api = TaskStateStoreApi()
def tearDown(self) -> None:
pass
def test_clear_task_state_store(self) -> None:
"""Test case for clear_task_state_store
Clear Task State Store
"""
pass
def test_delete_task_state_store(self) -> None:
"""Test case for delete_task_state_store
Delete Task State Store
"""
pass
def test_get_task_state_store(self) -> None:
"""Test case for get_task_state_store
Get Task State Store
"""
pass
def test_list_task_state_store(self) -> None:
"""Test case for list_task_state_store
List Task State Store
"""
pass
def test_patch_task_state_store(self) -> None:
"""Test case for patch_task_state_store
Patch Task State Store
"""
pass
def test_set_task_state_store(self) -> None:
"""Test case for set_task_state_store
Set Task State Store
"""
pass
if __name__ == '__main__':
unittest.main()