-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_project_api.py
218 lines (143 loc) · 4.32 KB
/
test_project_api.py
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# coding: utf-8
"""
Notehub API
The OpenAPI definition for the Notehub.io API.
The version of the OpenAPI document: 1.2.0
Contact: [email protected]
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from notehub_py.api.project_api import ProjectApi
class TestProjectApi(unittest.TestCase):
"""ProjectApi unit test stubs"""
def setUp(self) -> None:
self.api = ProjectApi()
def tearDown(self) -> None:
pass
def test_clone_project(self) -> None:
"""Test case for clone_project
"""
pass
def test_create_fleet(self) -> None:
"""Test case for create_fleet
"""
pass
def test_create_product(self) -> None:
"""Test case for create_product
"""
pass
def test_create_project(self) -> None:
"""Test case for create_project
"""
pass
def test_delete_device_fleets(self) -> None:
"""Test case for delete_device_fleets
"""
pass
def test_delete_fleet(self) -> None:
"""Test case for delete_fleet
"""
pass
def test_delete_fleet_environment_variable(self) -> None:
"""Test case for delete_fleet_environment_variable
"""
pass
def test_delete_project(self) -> None:
"""Test case for delete_project
"""
pass
def test_delete_project_environment_variable(self) -> None:
"""Test case for delete_project_environment_variable
"""
pass
def test_dfu_action(self) -> None:
"""Test case for dfu_action
"""
pass
def test_disable_global_transformation(self) -> None:
"""Test case for disable_global_transformation
"""
pass
def test_enable_global_transformation(self) -> None:
"""Test case for enable_global_transformation
"""
pass
def test_get_device_dfu_history(self) -> None:
"""Test case for get_device_dfu_history
"""
pass
def test_get_device_dfu_status(self) -> None:
"""Test case for get_device_dfu_status
"""
pass
def test_get_device_fleets(self) -> None:
"""Test case for get_device_fleets
"""
pass
def test_get_devices_dfu_history(self) -> None:
"""Test case for get_devices_dfu_history
"""
pass
def test_get_devices_dfu_status(self) -> None:
"""Test case for get_devices_dfu_status
"""
pass
def test_get_firmware_info(self) -> None:
"""Test case for get_firmware_info
"""
pass
def test_get_fleet_environment_variables(self) -> None:
"""Test case for get_fleet_environment_variables
"""
pass
def test_get_project(self) -> None:
"""Test case for get_project
"""
pass
def test_get_project_by_product(self) -> None:
"""Test case for get_project_by_product
"""
pass
def test_get_project_environment_variables(self) -> None:
"""Test case for get_project_environment_variables
"""
pass
def test_get_project_fleets(self) -> None:
"""Test case for get_project_fleets
"""
pass
def test_get_project_members(self) -> None:
"""Test case for get_project_members
"""
pass
def test_get_project_products(self) -> None:
"""Test case for get_project_products
"""
pass
def test_get_projects(self) -> None:
"""Test case for get_projects
"""
pass
def test_put_device_fleets(self) -> None:
"""Test case for put_device_fleets
"""
pass
def test_put_fleet_environment_variables(self) -> None:
"""Test case for put_fleet_environment_variables
"""
pass
def test_put_project_environment_variables(self) -> None:
"""Test case for put_project_environment_variables
"""
pass
def test_set_global_transformation(self) -> None:
"""Test case for set_global_transformation
"""
pass
def test_update_fleet(self) -> None:
"""Test case for update_fleet
"""
pass
if __name__ == '__main__':
unittest.main()