-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtest_default_api.py
More file actions
67 lines (42 loc) · 1.21 KB
/
test_default_api.py
File metadata and controls
67 lines (42 loc) · 1.21 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
# coding: utf-8
"""
Static OpenAPI document of Push API resource
Push API resources Open API documentation
The version of the OpenAPI document: 0.4.1
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from databox.api.default_api import DefaultApi
class TestDefaultApi(unittest.TestCase):
"""DefaultApi unit test stubs"""
def setUp(self) -> None:
self.api = DefaultApi()
def tearDown(self) -> None:
pass
def test_data_delete(self) -> None:
"""Test case for data_delete
"""
pass
def test_data_metric_key_delete(self) -> None:
"""Test case for data_metric_key_delete
"""
pass
def test_data_post(self) -> None:
"""Test case for data_post
"""
pass
def test_metrickeys_get(self) -> None:
"""Test case for metrickeys_get
"""
pass
def test_metrickeys_post(self) -> None:
"""Test case for metrickeys_post
"""
pass
def test_ping_get(self) -> None:
"""Test case for ping_get
"""
pass
if __name__ == '__main__':
unittest.main()