-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_feature_api.py
60 lines (39 loc) · 1.98 KB
/
test_feature_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
# coding: utf-8
"""
Frontier Administration API
The Frontier APIs adhere to the OpenAPI specification, also known as Swagger, which provides a standardized approach for designing, documenting, and consuming RESTful APIs. With OpenAPI, you gain a clear understanding of the API endpoints, request/response structures, and authentication mechanisms supported by the Frontier APIs. By leveraging the OpenAPI specification, developers can easily explore and interact with the Frontier APIs using a variety of tools and libraries. The OpenAPI specification enables automatic code generation, interactive API documentation, and seamless integration with API testing frameworks, making it easier than ever to integrate Frontier into your existing applications and workflows.
The version of the OpenAPI document: 0.2.0
Contact: [email protected]
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from frontier_api.api.feature_api import FeatureApi # noqa: E501
class TestFeatureApi(unittest.TestCase):
"""FeatureApi unit test stubs"""
def setUp(self) -> None:
self.api = FeatureApi() # noqa: E501
def tearDown(self) -> None:
pass
def test_frontier_service_create_feature(self) -> None:
"""Test case for frontier_service_create_feature
Create feature # noqa: E501
"""
pass
def test_frontier_service_get_feature(self) -> None:
"""Test case for frontier_service_get_feature
Get feature # noqa: E501
"""
pass
def test_frontier_service_list_features(self) -> None:
"""Test case for frontier_service_list_features
List features # noqa: E501
"""
pass
def test_frontier_service_update_feature(self) -> None:
"""Test case for frontier_service_update_feature
Update feature # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()