# 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.funcs_api import FuncsApi
class TestFuncsApi(unittest.TestCase):
"""FuncsApi unit test stubs"""
def setUp(self) -> None:
self.api = FuncsApi()
def tearDown(self) -> None:
pass
def test_create_transformation(self) -> None:
"""Test case for create_transformation
Create a transformation function
"""
pass
def test_get_func(self) -> None:
"""Test case for get_func
Get function details
"""
pass
def test_get_func_run(self) -> None:
"""Test case for get_func_run
Get func execution run logs
"""
pass
def test_unlock_func(self) -> None:
"""Test case for unlock_func
Unlocks a func - if there's already an unlocked function, then we return that
"""
pass
def test_update_func(self) -> None:
"""Test case for update_func
Update a func
"""
pass
if __name__ == '__main__':
unittest.main()