41 lines
945 B
Python
41 lines
945 B
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.activity_service_api import ActivityServiceApi # noqa: E501
|
|
from memos.rest import ApiException
|
|
|
|
|
|
class TestActivityServiceApi(unittest.TestCase):
|
|
"""ActivityServiceApi unit test stubs"""
|
|
|
|
def setUp(self):
|
|
self.api = ActivityServiceApi() # noqa: E501
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_activity_service_get_activity(self):
|
|
"""Test case for activity_service_get_activity
|
|
|
|
GetActivity returns the activity with the given id. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|