blob: e9b8b7d68df86b24d4c465ff541b5df06e5a6d5c [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.asset_state_store_api import AssetStateStoreApi
class TestAssetStateStoreApi(unittest.TestCase):
"""AssetStateStoreApi unit test stubs"""
def setUp(self) -> None:
self.api = AssetStateStoreApi()
def tearDown(self) -> None:
pass
def test_clear_asset_state_store(self) -> None:
"""Test case for clear_asset_state_store
Clear Asset State Store
"""
pass
def test_delete_asset_state_store(self) -> None:
"""Test case for delete_asset_state_store
Delete Asset State Store
"""
pass
def test_get_asset_state_store(self) -> None:
"""Test case for get_asset_state_store
Get Asset State Store
"""
pass
def test_list_asset_state_store(self) -> None:
"""Test case for list_asset_state_store
List Asset State Store
"""
pass
def test_set_asset_state_store(self) -> None:
"""Test case for set_asset_state_store
Set Asset State Store
"""
pass
if __name__ == '__main__':
unittest.main()