50 lines
921 B
Python
50 lines
921 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
announcementService
|
|
|
|
Announcing patchnotes for KanzleiApp
|
|
|
|
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 openapi_client.api.patchnotes_api import PatchnotesApi
|
|
|
|
|
|
class TestPatchnotesApi(unittest.TestCase):
|
|
"""PatchnotesApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = PatchnotesApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_get_patchnotes(self) -> None:
|
|
"""Test case for get_patchnotes
|
|
|
|
"""
|
|
pass
|
|
|
|
def test_patch_note_delete(self) -> None:
|
|
"""Test case for patch_note_delete
|
|
|
|
"""
|
|
pass
|
|
|
|
def test_post_patchnotes(self) -> None:
|
|
"""Test case for post_patchnotes
|
|
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|