55 lines
1.2 KiB
Python
55 lines
1.2 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
api/v2/activity_service.proto
|
|
|
|
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
|
|
OpenAPI spec version: version not set
|
|
|
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import unittest
|
|
|
|
import memos
|
|
from memos.api.inbox_service_api import InboxServiceApi # noqa: E501
|
|
from memos.rest import ApiException
|
|
|
|
|
|
class TestInboxServiceApi(unittest.TestCase):
|
|
"""InboxServiceApi unit test stubs"""
|
|
|
|
def setUp(self):
|
|
self.api = InboxServiceApi() # noqa: E501
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_inbox_service_delete_inbox(self):
|
|
"""Test case for inbox_service_delete_inbox
|
|
|
|
DeleteInbox deletes an inbox. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
def test_inbox_service_list_inboxes(self):
|
|
"""Test case for inbox_service_list_inboxes
|
|
|
|
ListInboxes lists inboxes for a user. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
def test_inbox_service_update_inbox(self):
|
|
"""Test case for inbox_service_update_inbox
|
|
|
|
UpdateInbox updates an inbox. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|