test_users_management_api.py
2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# coding: utf-8
"""
FastAPI
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
The version of the OpenAPI document: 0.1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from openapi_client.api.users_management_api import UsersManagementApi
class TestUsersManagementApi(unittest.TestCase):
"""UsersManagementApi unit test stubs"""
def setUp(self) -> None:
self.api = UsersManagementApi()
def tearDown(self) -> None:
pass
def test_forgot_password_users_forgot_password_post(self) -> None:
"""Test case for forgot_password_users_forgot_password_post
Forgot Password
"""
pass
def test_get_profile_picture_users_profile_pic_user_id_user_type_id_get(self) -> None:
"""Test case for get_profile_picture_users_profile_pic_user_id_user_type_id_get
Get Profile Picture
"""
pass
def test_get_user_locations_users_students_user_id_user_type_id_get(self) -> None:
"""Test case for get_user_locations_users_students_user_id_user_type_id_get
Get User Locations
"""
pass
def test_new_student_users_students_user_id_user_type_id_post(self) -> None:
"""Test case for new_student_users_students_user_id_user_type_id_post
New Student
"""
pass
def test_reset_password_users_reset_password_post(self) -> None:
"""Test case for reset_password_users_reset_password_post
Reset Password
"""
pass
def test_update_profile_picture_users_profile_pic_user_id_user_type_id_post(self) -> None:
"""Test case for update_profile_picture_users_profile_pic_user_id_user_type_id_post
Update Profile Picture
"""
pass
def test_update_user_profile_users_user_id_user_type_id_put(self) -> None:
"""Test case for update_user_profile_users_user_id_user_type_id_put
Update User Profile
"""
pass
def test_validate_user_sign_up_users_validate_user_id_user_type_id_post(self) -> None:
"""Test case for validate_user_sign_up_users_validate_user_id_user_type_id_post
Validate User Sign Up
"""
pass
if __name__ == '__main__':
unittest.main()