48 lines
1.4 KiB
Python
48 lines
1.4 KiB
Python
|
# coding: utf-8
|
||
|
|
||
|
"""
|
||
|
Univention Directory Manager REST interface
|
||
|
|
||
|
Schema definition for the objects in the Univention Directory Manager REST interface. # noqa: E501
|
||
|
|
||
|
The version of the OpenAPI document: 1.0.2
|
||
|
Generated by: https://openapi-generator.tech
|
||
|
"""
|
||
|
|
||
|
|
||
|
from __future__ import absolute_import
|
||
|
|
||
|
import unittest
|
||
|
|
||
|
import openapi_client_udm
|
||
|
from openapi_client_udm.api.settings_portal_all_api import SettingsPortalAllApi # noqa: E501
|
||
|
from openapi_client_udm.rest import ApiException
|
||
|
|
||
|
|
||
|
class TestSettingsPortalAllApi(unittest.TestCase):
|
||
|
"""SettingsPortalAllApi unit test stubs"""
|
||
|
|
||
|
def setUp(self):
|
||
|
self.api = openapi_client_udm.api.settings_portal_all_api.SettingsPortalAllApi() # noqa: E501
|
||
|
|
||
|
def tearDown(self):
|
||
|
pass
|
||
|
|
||
|
def test_udm_settings_portal_all_object(self):
|
||
|
"""Test case for udm_settings_portal_all_object
|
||
|
|
||
|
Get a representation of the Deprecated Portal: Settings object with all its properties, policies, options, metadata and references. Includes also instructions how to modify, remove or move the object. # noqa: E501
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
def test_udm_settings_portal_all_object_search(self):
|
||
|
"""Test case for udm_settings_portal_all_object_search
|
||
|
|
||
|
Search for Deprecated Portal: Settings objects # noqa: E501
|
||
|
"""
|
||
|
pass
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|