# coding: utf-8
"""
System Initiative API
The API Server for interacting with a System Initiative workspace
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from system_initiative_api_client.api.components_api import ComponentsApi
class TestComponentsApi(unittest.TestCase):
"""ComponentsApi unit test stubs"""
def setUp(self) -> None:
self.api = ComponentsApi()
def tearDown(self) -> None:
pass
def test_add_action(self) -> None:
"""Test case for add_action
Queue action for a component
"""
pass
def test_add_to_view(self) -> None:
"""Test case for add_to_view
Add components to a view
"""
pass
def test_create_component(self) -> None:
"""Test case for create_component
Create a component
"""
pass
def test_delete_component(self) -> None:
"""Test case for delete_component
Delete a component
"""
pass
def test_duplicate_components(self) -> None:
"""Test case for duplicate_components
Duplicate a list of components
"""
pass
def test_erase_component(self) -> None:
"""Test case for erase_component
Erase a component without queuing a delete action
"""
pass
def test_execute_management_function(self) -> None:
"""Test case for execute_management_function
Execute a component's management function
"""
pass
def test_find_component(self) -> None:
"""Test case for find_component
Find a component by name or component Id
"""
pass
def test_get_component(self) -> None:
"""Test case for get_component
Get a component by component Id
"""
pass
def test_get_component_resource(self) -> None:
"""Test case for get_component_resource
Get a component resource by component Id
"""
pass
def test_list_components(self) -> None:
"""Test case for list_components
List all components
"""
pass
def test_manage_component(self) -> None:
"""Test case for manage_component
Putting a component under the management of another component
"""
pass
def test_restore_component(self) -> None:
"""Test case for restore_component
Restore a component that is marked for deletion
"""
pass
def test_search_components(self) -> None:
"""Test case for search_components
Complex search for components
"""
pass
def test_update_component(self) -> None:
"""Test case for update_component
Update a component
"""
pass
def test_upgrade_component(self) -> None:
"""Test case for upgrade_component
Upgrade a component to the latest schema variant
"""
pass
if __name__ == '__main__':
unittest.main()