40 lines
952 B
Python
40 lines
952 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.models.v2_user_access_token import V2UserAccessToken # noqa: E501
|
|
from memos.rest import ApiException
|
|
|
|
|
|
class TestV2UserAccessToken(unittest.TestCase):
|
|
"""V2UserAccessToken unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def testV2UserAccessToken(self):
|
|
"""Test V2UserAccessToken"""
|
|
# FIXME: construct object with mandatory attributes with example values
|
|
# model = memos.models.v2_user_access_token.V2UserAccessToken() # noqa: E501
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|